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.”。

扩展截图

screenshot
screenshot

下载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 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
电子邮箱 [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"
    }
}