Svelte Detector

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

Cos'è Svelte Detector?

Svelte Detector è un'estensione di Chrome sviluppata da alb, e la sua funzione principale è "A quick and easy way to see if a website is using Svelte.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Svelte Detector

Scarica i file di estensione Svelte Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
URL Ufficiale https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Descrizione A quick and easy way to see if a website is using Svelte.
Dimensione del File 11.75 KB
Conteggio Installazioni 41
Versione Corrente 1.0
Ultimo Aggiornamento 2021-03-08
Data di Pubblicazione 2021-03-08
Sviluppatore alb
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/alb
URL della Pagina di Aiuto https://github.com/alb
Lingue Supportate 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"
    }
}