Svelte Detector

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

Hvad er Svelte Detector?

Svelte Detector er en Chrome-udvidelse udviklet af alb, og dens hovedfunktion er "A quick and easy way to see if a website is using Svelte.".

Udvidelsesskærmbilleder

screenshot

Download Svelte Detector-udvidelses-CRX-fil

Download Svelte Detector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
Officiel URL https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Beskrivelse A quick and easy way to see if a website is using Svelte.
Filstørrelse 11.75 KB
Antal Installationer 41
Nuværende Version 1.0
Senest Opdateret 2021-03-08
Udgivelsesdato 2021-03-08
Udvikler alb
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/alb
Hjælpeside-URL https://github.com/alb
Understøttede Sprog 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"
    }
}