Svelte Detector

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

Wat is Svelte Detector?

Svelte Detector is een Chrome-extensie ontwikkeld door alb, en de belangrijkste functie is "A quick and easy way to see if a website is using Svelte.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Svelte Detector

Download Svelte Detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
Officiële URL https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Beschrijving A quick and easy way to see if a website is using Svelte.
Bestandsgrootte 11.75 KB
Aantal Installaties 41
Huidige Versie 1.0
Laatst Bijgewerkt 2021-03-08
Publicatiedatum 2021-03-08
Ontwikkelaar alb
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alb
Help Pagina-URL https://github.com/alb
Ondersteunde Talen 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"
    }
}