Svelte Detector

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

Apa itu Svelte Detector?

Svelte Detector adalah ekstensi Chrome yang dikembangkan oleh alb, dan fitur utamanya adalah "A quick and easy way to see if a website is using Svelte.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Svelte Detector

Unduh file ekstensi Svelte Detector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Svelte Detector Svelte Detector
ID fljbnifempkhohdknjimgflidjaankhk
URL Resmi https://chrome.google.com/webstore/detail/svelte-detector/fljbnifempkhohdknjimgflidjaankhk
Deskripsi A quick and easy way to see if a website is using Svelte.
Ukuran File 11.75 KB
Jumlah Instalasi 41
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-03-08
Tanggal Publikasi 2021-03-08
Pengembang alb
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/alb
URL Halaman Bantuan https://github.com/alb
Bahasa yang Didukung 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"
    }
}