Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

Gatbsy.js Detectorคืออะไร?

Gatbsy.js Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sibiraj.dev และคุณลักษณะหลักของมันคือ "Extension to detect sites built with Gatsby.js"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gatbsy.js Detector

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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';"
    }
}