├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── code_structure.md ├── code_structure.png └── screenshot_2.png ├── gulpfile.js ├── package.json ├── src ├── _locales │ └── en │ │ └── messages.json ├── icons │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ ├── 64.png │ └── xmas.png ├── manifest.json ├── scripts │ ├── background.js │ ├── dropbox_client.js │ ├── dropbox_fs.js │ ├── http_fetcher.js │ ├── metadata_cache.js │ └── window.js ├── styles │ └── style.css └── window.html └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/README.md -------------------------------------------------------------------------------- /docs/code_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/docs/code_structure.md -------------------------------------------------------------------------------- /docs/code_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/docs/code_structure.png -------------------------------------------------------------------------------- /docs/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/docs/screenshot_2.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/128.png -------------------------------------------------------------------------------- /src/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/16.png -------------------------------------------------------------------------------- /src/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/32.png -------------------------------------------------------------------------------- /src/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/48.png -------------------------------------------------------------------------------- /src/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/64.png -------------------------------------------------------------------------------- /src/icons/xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/icons/xmas.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/background.js -------------------------------------------------------------------------------- /src/scripts/dropbox_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/dropbox_client.js -------------------------------------------------------------------------------- /src/scripts/dropbox_fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/dropbox_fs.js -------------------------------------------------------------------------------- /src/scripts/http_fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/http_fetcher.js -------------------------------------------------------------------------------- /src/scripts/metadata_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/metadata_cache.js -------------------------------------------------------------------------------- /src/scripts/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/scripts/window.js -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /src/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/src/window.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/chromeos-filesystem-dropbox/HEAD/yarn.lock --------------------------------------------------------------------------------