SVOLTE

Browser devtools extension for debugging Svelte applications.

ما هو SVOLTE؟

SVOLTE هو إضافة Chrome تم تطويرها بواسطة Svolte، والميزة الرئيسية لها هي "Browser devtools extension for debugging Svelte applications.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة SVOLTE

قم بتنزيل ملفات الامتداد SVOLTE بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Developer tools for Svelte applications and webpages. Features include a component hierarchy tree visualizer, state snapshots, and time-travel debugging.                    

معلومات أساسية عن التمديد

الاسم SVOLTE SVOLTE
ID nlocdmlaoaknkffkhpmgahkdkcajcohk
عنوان URL الرسمي https://chromewebstore.google.com/detail/svolte/nlocdmlaoaknkffkhpmgahkdkcajcohk
الوصف Browser devtools extension for debugging Svelte applications.
حجم الملف 321 KB
عدد التثبيتات 66
النسخة الحالية 1.3.0
آخر تحديث 2023-06-06
تاريخ النشر 2023-06-05
تقييم 5.00/5 مجموع تقييمات 5
المطور Svolte
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SVOLTE",
    "version": "1.3.0",
    "description": "Browser devtools extension for debugging Svelte applications.",
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "isolated.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js",
        "run_at": "document_start"
    },
    "devtools_page": "devtools\/index.html",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    }
}