Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

Cos'è Gatbsy.js Detector?

Gatbsy.js Detector è un'estensione di Chrome sviluppata da https://sibiraj.dev, e la sua funzione principale è "Extension to detect sites built with Gatsby.js".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Gatbsy.js Detector

Scarica i file di estensione Gatbsy.js 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

                        Detect whether the site you visit is running Gatsby.js                    

Informazioni di Base sull'Estensione

Nome Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
URL Ufficiale https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
Descrizione Extension to detect sites built with Gatsby.js
Dimensione del File 146 KB
Conteggio Installazioni 298
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-01-09
Data di Pubblicazione 2019-02-09
Sviluppatore https://sibiraj.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sibiraj-s/gatsby.js-detector
URL della Pagina di Aiuto https://github.com/sibiraj-s/gatsby.js-detector/issues
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.0",
    "name": "Gatbsy.js Detector",
    "short_name": "Gatbsy.js Detector",
    "description": "Extension to detect sites built with Gatsby.js",
    "manifest_version": 3,
    "author": "sibiraj-s",
    "icons": {
        "16": "images\/production\/gatsby-16x16.png",
        "32": "images\/production\/gatsby-32x32.png",
        "48": "images\/production\/gatsby-48x48.png",
        "128": "images\/production\/gatsby-128x128.png",
        "512": "images\/production\/gatsby-512x512.png"
    },
    "action": {
        "default_title": "Gatbsy.js Detector",
        "default_icon": {
            "16": "images\/disabled\/gatsby-16x16.png",
            "32": "images\/disabled\/gatsby-32x32.png",
            "48": "images\/disabled\/gatsby-48x48.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "gatsbyDetector.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';"
    }
}