Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

Qu'est-ce que Gatbsy.js Detector ?

Gatbsy.js Detector est une extension Chrome développée par https://sibiraj.dev, et sa fonction principale est "Extension to detect sites built with Gatsby.js".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Gatbsy.js Detector

Téléchargez les fichiers d'extension Gatbsy.js 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

                        Detect whether the site you visit is running Gatsby.js                    

Informations de Base sur l'Extension

Nom Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
URL Officiel https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
Description Extension to detect sites built with Gatsby.js
Taille du Fichier 146 KB
Nombre d'Installations 298
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-01-09
Date de Publication 2019-02-09
Développeur https://sibiraj.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sibiraj-s/gatsby.js-detector
URL de la Page d'Aide https://github.com/sibiraj-s/gatsby.js-detector/issues
Langues Prises en Charge 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';"
    }
}