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
公式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
Eメール [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"
    }
}