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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}