Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Cos'è Svelte Devtools?

Svelte Devtools è un'estensione di Chrome sviluppata da RedHatter271, e la sua funzione principale è "Browser devtools extension for debugging Svelte applications.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Svelte Devtools

Scarica i file di estensione Svelte Devtools 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

                        Svelte Devtools is a Chrome extension for the Svelte javascript framework. It allows you to inspect the Svelte state and component hierarchies in the Chrome Developer Tools.

After installing you will see new tab in Chrome DevTools. This tab displays a tree of Svelte components, HTMLx blocks, and DOM elements that were rendered on the page. By selecting one of the nodes in the tree, you can inspect and edit its current state in the panel to the right.                    

Informazioni di Base sull'Estensione

Nome Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
URL Ufficiale https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
Descrizione Browser devtools extension for debugging Svelte applications.
Dimensione del File 55.92 KB
Conteggio Installazioni 19,811
Versione Corrente 1.3.0
Ultimo Aggiornamento 2021-01-02
Data di Pubblicazione 2020-03-28
Valutazione 3.26/5 Totale 53 Valutazioni
Sviluppatore RedHatter271
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/RedHatter/svelte-devtools
URL della Pagina di Aiuto https://github.com/RedHatter/svelte-devtools/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Svelte Devtools",
    "version": "1.3.0",
    "description": "Browser devtools extension for debugging Svelte applications.",
    "icons": {
        "16": "icon-16.png",
        "24": "icon-24.png",
        "48": "icon-48.png",
        "96": "icon-96.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools\/index.html",
    "web_accessible_resources": [
        "privilegedContent.js"
    ]
}