Sveltime

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

Что такое Sveltime?

Sveltime - это расширение Chrome, разработанное sveltime, и его основная функция - "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Sveltime

Скачайте файлы расширений Sveltime в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
Официальный URL https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Описание Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Размер файла 186 KB
Количество установок 49
Текущая Версия 1.0
Последнее Обновление 2022-06-02
Дата публикации 2022-06-02
Рейтинг 5.00/5 Всего 3 оценок
Разработчик sveltime
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}