Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Что такое Svelte Devtools?

Svelte Devtools - это расширение Chrome, разработанное RedHatter271, и его основная функция - "Browser devtools extension for debugging Svelte applications.".

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

screenshot

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

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

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

                        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.                    

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

Название Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
Официальный URL https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
Описание Browser devtools extension for debugging Svelte applications.
Размер файла 55.92 KB
Количество установок 19,811
Текущая Версия 1.3.0
Последнее Обновление 2021-01-02
Дата публикации 2020-03-28
Рейтинг 3.26/5 Всего 53 оценок
Разработчик RedHatter271
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/RedHatter/svelte-devtools
URL страницы помощи https://github.com/RedHatter/svelte-devtools/issues
Поддерживаемые языки 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"
    ]
}