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 |
官方網址 | 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 |
電子郵箱 | [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" } } |