Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

什麼是Gatbsy.js Detector?

Gatbsy.js Detector是由https://sibiraj.dev開發的Chrome擴展程式,該擴展的主要功能是“Extension to detect sites built with Gatsby.js”。

擴展截圖

screenshot
screenshot

下載Gatbsy.js Detector擴展crx文件

下載Gatbsy.js Detector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Detect whether the site you visit is running Gatsby.js                    

擴展基本資訊

名稱 Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
官方網址 https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
簡介 Extension to detect sites built with Gatsby.js
檔案大小 146 KB
安裝次數 298
目前版本 2.0.0
更新時間 2023-01-09
上架時間 2019-02-09
開發者 https://sibiraj.dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sibiraj-s/gatsby.js-detector
說明頁面URL https://github.com/sibiraj-s/gatsby.js-detector/issues
支援的語言 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';"
    }
}