Svelte Detector

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

Qu'est-ce que Svelte Detector ?

Svelte Detector est une extension Chrome développée par alb, et sa fonction principale est "A quick and easy way to see if a website is using Svelte.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Svelte Detector

Téléchargez les fichiers d'extension Svelte Detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
URL Officiel https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Description A quick and easy way to see if a website is using Svelte.
Taille du Fichier 11.75 KB
Nombre d'Installations 41
Version Actuelle 1.0
Dernière Mise à Jour 2021-03-08
Date de Publication 2021-03-08
Développeur alb
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/alb
URL de la Page d'Aide https://github.com/alb
Langues Prises en Charge 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"
    }
}