Preact Developer Tools

Adds debugging tools for Preact to Chrome

Cos'è Preact Developer Tools?

Preact Developer Tools è un'estensione di Chrome sviluppata da Preact Developers, e la sua funzione principale è "Adds debugging tools for Preact to Chrome".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Preact Developer Tools

Scarica i file di estensione Preact Developer Tools 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

                        Debugging tools for Preact. This extension allows you to inspect the component hierarchy and change properties on the fly.                    

Informazioni di Base sull'Estensione

Nome Preact Developer Tools Preact Developer Tools
ID ilcajpmogmhpliinlbcdebhbcanbghmd
URL Ufficiale https://chromewebstore.google.com/detail/preact-developer-tools/ilcajpmogmhpliinlbcdebhbcanbghmd
Descrizione Adds debugging tools for Preact to Chrome
Dimensione del File 144 KB
Conteggio Installazioni 9,788
Versione Corrente 4.7.1
Ultimo Aggiornamento 2023-03-06
Data di Pubblicazione 2020-06-10
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore Preact Developers
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://preactjs.github.io/preact-devtools/
URL della Pagina di Aiuto https://github.com/preactjs/preact-devtools/issues/
URL della Pagina della Politica sulla Privacy https://github.com/preactjs/preact-devtools/blob/master/PRIVACY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Preact Developer Tools",
    "description": "Adds debugging tools for Preact to Chrome",
    "version": "4.7.1",
    "devtools_page": "panel\/empty-panel.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "192": "icons\/icon-192.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16-disabled.png",
            "32": "icons\/icon-32-disabled.png",
            "48": "icons\/icon-48-disabled.png",
            "128": "icons\/icon-128-disabled.png",
            "192": "icons\/icon-192-disabled.png"
        },
        "default_popup": "popup\/disabled.html"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "preact-devtools-page.css"
    ]
}