Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Apa itu Svelte Devtools?

Svelte Devtools adalah ekstensi Chrome yang dikembangkan oleh RedHatter271, dan fitur utamanya adalah "Browser devtools extension for debugging Svelte applications.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Svelte Devtools

Unduh file ekstensi Svelte Devtools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
URL Resmi https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
Deskripsi Browser devtools extension for debugging Svelte applications.
Ukuran File 55.92 KB
Jumlah Instalasi 19,811
Versi Saat Ini 1.3.0
Terakhir Diperbarui 2021-01-02
Tanggal Publikasi 2020-03-28
Penilaian 3.26/5 Total 53 Penilaian
Pengembang RedHatter271
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/RedHatter/svelte-devtools
URL Halaman Bantuan https://github.com/RedHatter/svelte-devtools/issues
Bahasa yang Didukung 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"
    ]
}