Svelte Detector

A quick and easy way to see if a website is using Svelte.

ما هو Svelte Detector؟

Svelte Detector هو إضافة Chrome تم تطويرها بواسطة alb، والميزة الرئيسية لها هي "A quick and easy way to see if a website is using Svelte.".

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

screenshot

تحميل ملف CRX للإضافة Svelte Detector

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

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

                        See if a site is using Svelte

This add-on detects if a website uses Svelte or not. If the site uses Svelte the add-on icon will be orange.                    

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

الاسم Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
الوصف A quick and easy way to see if a website is using Svelte.
حجم الملف 11.75 KB
عدد التثبيتات 41
النسخة الحالية 1.0
آخر تحديث 2021-03-08
تاريخ النشر 2021-03-08
المطور alb
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/alb
عنوان صفحة المساعدة https://github.com/alb
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "Svelte Detector",
    "short_name": "svelte-detector",
    "description": "A quick and easy way to see if a website is using Svelte.",
    "author": "alb",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/not-svelte.png"
    },
    "icons": {
        "128": "images\/svelte.png"
    }
}