Svelte Detector

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

Svelte Detector là gì?

Svelte Detector là một tiện ích mở rộng Chrome được phát triển bởi alb, và tính năng chính của nó là "A quick and easy way to see if a website is using Svelte.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Svelte Detector

Tải xuống các tệp mở rộng Svelte Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
URL Chính Thức https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Mô tả A quick and easy way to see if a website is using Svelte.
Kích Thước Tệp 11.75 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-03-08
Ngày Phát Hành 2021-03-08
Nhà Phát Triển alb
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alb
URL Trang Trợ Giúp https://github.com/alb
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}