Svelte Reactive Debugger

Monitor svelte reactive statements

O que é Svelte Reactive Debugger?

Svelte Reactive Debugger é uma extensão do Chrome desenvolvida por unloco, e sua principal característica é "Monitor svelte reactive statements".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Svelte Reactive Debugger

Baixe arquivos de extensão Svelte Reactive Debugger no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        SvelteJs makes use of reactive statement that are re-executed on a state change. These statements can prove hard to debug or monitor. That's where this extension comes in. It allows to monitor the reactive statements easily by showing the statements as they are executed and also by showing the state snapshots before and after the statement has been invoked.                    

Informações Básicas da Extensão

Nome Svelte Reactive Debugger Svelte Reactive Debugger
ID mieppkcamgfhpjedhnfdlbndijhohmjf
URL Oficial https://chromewebstore.google.com/detail/svelte-reactive-debugger/mieppkcamgfhpjedhnfdlbndijhohmjf
Descrição Monitor svelte reactive statements
Tamanho do Arquivo 216 KB
Contagem de Instalações 1,675
Versão Atual 0.8.3
Última Atualização 2022-12-14
Data de Publicação 2021-01-20
Desenvolvedor unloco
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Svelte Reactive Debugger",
    "version": "0.8.3",
    "description": "Monitor svelte reactive statements",
    "icons": {
        "16": "icons\/icon-16.png",
        "24": "icons\/icon-24.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "devtools_page": "devtools\/devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "devtools\/content.js",
                "devtools\/helper.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "devtools\/background.js"
    },
    "permissions": [
        "tabs"
    ],
    "optional_host_permissions": [
        ""
    ],
    "manifest_version": 3
}