Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

Was ist Gatbsy.js Detector?

Gatbsy.js Detector ist eine Chrome-Erweiterung, die von https://sibiraj.dev entwickelt wurde, und ihr Hauptmerkmal ist "Extension to detect sites built with Gatsby.js".

Erweiterungsscreenshots

screenshot
screenshot

Gatbsy.js Detector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gatbsy.js Detector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Detect whether the site you visit is running Gatsby.js                    

Grundlegende Informationen zur Erweiterung

Name Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
Offizielle URL https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
Beschreibung Extension to detect sites built with Gatsby.js
Dateigröße 146 KB
Installationsanzahl 298
Aktuelle Version 2.0.0
Letztes Update 2023-01-09
Veröffentlichungsdatum 2019-02-09
Entwickler https://sibiraj.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sibiraj-s/gatsby.js-detector
Hilfeseite URL https://github.com/sibiraj-s/gatsby.js-detector/issues
Unterstützte Sprachen 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';"
    }
}