Svelte Detector

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

Vad är Svelte Detector?

Svelte Detector är en Chrome-tillägg utvecklad av alb, och dess huvudfunktion är "A quick and easy way to see if a website is using Svelte.".

Tilläggsskärmbilder

screenshot

Ladda ner Svelte Detector-förlängningens CRX-fil

Ladda ner Svelte Detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
Officiell webbadress https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Beskrivning A quick and easy way to see if a website is using Svelte.
Filstorlek 11.75 KB
Antal Installationer 41
Aktuell Version 1.0
Senast Uppdaterad 2021-03-08
Publiceringsdatum 2021-03-08
Utvecklare alb
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/alb
Hjälpsida URL https://github.com/alb
Stödda Språk 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"
    }
}