OPFS Explorer

OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.

Cos'è OPFS Explorer?

OPFS Explorer è un'estensione di Chrome sviluppata da https://tomayac.com, e la sua funzione principale è "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione OPFS Explorer

Scarica i file di estensione OPFS Explorer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome OPFS Explorer OPFS Explorer
ID acndjpgkpaclldomagafnognkcgjignd
URL Ufficiale https://chromewebstore.google.com/detail/opfs-explorer/acndjpgkpaclldomagafnognkcgjignd
Descrizione OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.
Dimensione del File 15.03 KB
Conteggio Installazioni 2,715
Versione Corrente 1.6.1
Ultimo Aggiornamento 2024-01-11
Data di Pubblicazione 2022-11-07
Valutazione 4.63/5 Totale 8 Valutazioni
Sviluppatore https://tomayac.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tomayac/opfs-explorer
URL della Pagina di Aiuto https://github.com/tomayac/opfs-explorer/issues
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Lingue Supportate 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"
    }
}