├── .prettierrc ├── LICENSE ├── README.md ├── contentscript.js ├── devtools.html ├── devtools.js ├── docs └── index.html ├── icon.svg ├── icon128.png ├── icon48.png ├── manifest.json ├── package.json ├── panel.html ├── serviceworker.js └── store-assets ├── dark.png └── light.png /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/README.md -------------------------------------------------------------------------------- /contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/contentscript.js -------------------------------------------------------------------------------- /devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/devtools.html -------------------------------------------------------------------------------- /devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/devtools.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/docs/index.html -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/icon.svg -------------------------------------------------------------------------------- /icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/icon128.png -------------------------------------------------------------------------------- /icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/icon48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/package.json -------------------------------------------------------------------------------- /panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/panel.html -------------------------------------------------------------------------------- /serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/serviceworker.js -------------------------------------------------------------------------------- /store-assets/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/store-assets/dark.png -------------------------------------------------------------------------------- /store-assets/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/opfs-explorer/HEAD/store-assets/light.png --------------------------------------------------------------------------------