Is there an easy way to view, edit, and locally store a TXT file through Chrome

This is not necessarily a coding problem, but users here will be ideal people to ask.

Is there an easy way to view and edit a simple text file (.txt seems most obvious) in a browser (I use Chrome). I would like this file to also be stored locally, preferably in my Dropbox folder, so it always backed up.

I tried to find the chrome extension that does this, but after 3 unsuccessful attempts, I thought there might be a manual way to do this.

I do not need a format if it is widespread and can be opened on other computers, if necessary.

+3
source share
4

, :

data:text/html, <html contenteditable>

, , -. .

+1

HTML5 API : http://www.html5rocks.com/tutorials/file/filesystem/

, , blob , , .

  var bb = new BlobBuilder();
  bb.append(message.value);
  var blob = bb.getBlob(); 
  location.href = window.webkitURL.createObjectURL(blob);
0

, , , , . Chrome Workspace, .

, editable.md . Chrome, "" , . , MarkView, .

0

, , - , . ? .

, - , - Dropbox, .

The main problem is that the browser cannot easily access the files on your computer if they are not cookies, tmp.

-2
source

Source: https://habr.com/ru/post/1790432/


All Articles