Sveltime

Developer Tool to analyze Svelte apps and list component trees, state, and render timing

O que é Sveltime?

Sveltime é uma extensão do Chrome desenvolvida por sveltime, e sua principal característica é "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Sveltime

Baixe arquivos de extensão Sveltime 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

                        Sveltime is a Chrome DevTools extension for developers actively building their website using the Svelte framework.  Sveltime will show the component tree as it is currently being rendered.  Each component will also have the option to see what state is currently associated with it.  The render time will also be displayed for each component.                    

Informações Básicas da Extensão

Nome Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
URL Oficial https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Descrição Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Tamanho do Arquivo 186 KB
Contagem de Instalações 49
Versão Atual 1.0
Última Atualização 2022-06-02
Data de Publicação 2022-06-02
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor sveltime
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sveltime",
    "version": "1.0",
    "description": "Developer Tool to analyze Svelte apps and list component trees, state, and render timing",
    "author": "Team Sveltime",
    "icons": {
        "16": "\/src\/assets\/clock16.png",
        "32": "\/src\/assets\/clock32.png",
        "48": "\/src\/assets\/clock48.png",
        "128": "\/src\/assets\/clock128.png"
    },
    "devtools_page": "extension\/html\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/extension\/js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}