Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

What is Gatbsy.js Detector?

Gatbsy.js Detector is a Chrome extension developed by https://sibiraj.dev, and its main feature is "Extension to detect sites built with Gatsby.js".

Extension Screenshots

screenshot
screenshot

Download Gatbsy.js Detector Extension CRX File

Download Gatbsy.js Detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Detect whether the site you visit is running Gatsby.js                    

Extension Basic Information

Name Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
Official URL https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
Description Extension to detect sites built with Gatsby.js
File Size 146 KB
Installation Count 298
Current Version 2.0.0
Last Updated 2023-01-09
Publish Date 2019-02-09
Developer https://sibiraj.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/sibiraj-s/gatsby.js-detector
Help Page URL https://github.com/sibiraj-s/gatsby.js-detector/issues
Supported Languages 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';"
    }
}