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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}