Svelte Detector

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

什麼是Svelte Detector?

Svelte Detector是由alb開發的Chrome擴展程式,該擴展的主要功能是“A quick and easy way to see if a website is using Svelte.”。

擴展截圖

screenshot

下載Svelte Detector擴展crx文件

下載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
官方網址 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"
    }
}