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 là gì?

OPFS Explorer là một tiện ích mở rộng Chrome được phát triển bởi https://tomayac.com, và tính năng chính của nó là "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng OPFS Explorer

Tải xuống các tệp mở rộng OPFS Explorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OPFS Explorer OPFS Explorer
ID acndjpgkpaclldomagafnognkcgjignd
URL Chính Thức https://chromewebstore.google.com/detail/opfs-explorer/acndjpgkpaclldomagafnognkcgjignd
Mô tả OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.
Kích Thước Tệp 15.03 KB
Số Lần Cài Đặt 2,715
Phiên Bản Hiện Tại 1.6.1
Cập Nhật Lần Cuối 2024-01-11
Ngày Phát Hành 2022-11-07
Đánh Giá 4.63/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://tomayac.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tomayac/opfs-explorer
URL Trang Trợ Giúp https://github.com/tomayac/opfs-explorer/issues
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}