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
电子邮箱 [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"
    }
}