Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Wat is Svelte Devtools?

Svelte Devtools is een Chrome-extensie ontwikkeld door RedHatter271, en de belangrijkste functie is "Browser devtools extension for debugging Svelte applications.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Svelte Devtools

Download Svelte Devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
Officiële URL https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
Beschrijving Browser devtools extension for debugging Svelte applications.
Bestandsgrootte 55.92 KB
Aantal Installaties 19,811
Huidige Versie 1.3.0
Laatst Bijgewerkt 2021-01-02
Publicatiedatum 2020-03-28
Beoordeling 3.26/5 Totaal 53 Beoordelingen
Ontwikkelaar RedHatter271
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/RedHatter/svelte-devtools
Help Pagina-URL https://github.com/RedHatter/svelte-devtools/issues
Ondersteunde Talen 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"
    ]
}