Svelte Detector

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

What is Svelte Detector?

Svelte Detector is a Chrome extension developed by alb, and its main feature is "A quick and easy way to see if a website is using Svelte.".

Extension Screenshots

screenshot

Download Svelte Detector Extension CRX File

Download Svelte Detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
Official URL https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Description A quick and easy way to see if a website is using Svelte.
File Size 11.75 KB
Installation Count 41
Current Version 1.0
Last Updated 2021-03-08
Publish Date 2021-03-08
Developer alb
Email [email protected]
Payment Type free
Extension Website https://github.com/alb
Help Page URL https://github.com/alb
Supported Languages 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"
    }
}