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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}