OPFS Explorer
OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.
OPFS Explorerとは何ですか?
OPFS Explorerはhttps://tomayac.comによって開発されたChromeの拡張機能で、その主な機能は「OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.」です。
拡張機能のスクリーンショット
OPFS Explorer拡張機能のCRXファイルをダウンロード
OPFS Explorer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS, https://fs.spec.whatwg.org/) of a web application. To use it, open Chrome DevTools and click on the OPFS Explorer tab. The extension will automatically analyze the OPFS of the current web application and display the file hierarchy. You can then click on any file to download its contents or delete the file (which may fail if the file is locked). Note that deleting files may cause the application to break. You can test the extension on the demo page (https://tomayac.github.io/opfs-explorer/). The source code is on GitHub (https://github.com/tomayac/opfs-explorer).
拡張機能の基本情報
名前 | OPFS Explorer |
ID | acndjpgkpaclldomagafnognkcgjignd |
公式URL | https://chromewebstore.google.com/detail/opfs-explorer/acndjpgkpaclldomagafnognkcgjignd |
説明 | OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application. |
ファイルサイズ | 15.03 KB |
インストール数 | 2,715 |
現在のバージョン | 1.6.1 |
最終更新日 | 2024-01-11 |
公開日 | 2022-11-07 |
評価 | 4.63/5 合計 8 レビュー |
開発者 | https://tomayac.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tomayac/opfs-explorer |
ヘルプページのURL | https://github.com/tomayac/opfs-explorer/issues |
プライバシーポリシーページのURL | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OPFS Explorer", "description": "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.", "manifest_version": 3, "version": "1.6.1", "devtools_page": "devtools.html", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/localhost\/*", "http:\/\/0.0.0.0\/*", "http:\/\/127.0.0.1\/*" ], "run_at": "document_idle", "js": [ "contentscript.js" ] } ], "background": { "service_worker": "serviceworker.js" }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |