Gatbsy.js Detector

Extension to detect sites built with Gatsby.js

Gatbsy.js Detector là gì?

Gatbsy.js Detector là một tiện ích mở rộng Chrome được phát triển bởi https://sibiraj.dev, và tính năng chính của nó là "Extension to detect sites built with Gatsby.js".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gatbsy.js Detector

Tải xuống các tệp mở rộng Gatbsy.js Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Detect whether the site you visit is running Gatsby.js                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gatbsy.js Detector Gatbsy.js Detector
ID ebnangjfmhfioccbaepehadakhiffapm
URL Chính Thức https://chromewebstore.google.com/detail/gatbsyjs-detector/ebnangjfmhfioccbaepehadakhiffapm
Mô tả Extension to detect sites built with Gatsby.js
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 298
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-01-09
Ngày Phát Hành 2019-02-09
Nhà Phát Triển https://sibiraj.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sibiraj-s/gatsby.js-detector
URL Trang Trợ Giúp https://github.com/sibiraj-s/gatsby.js-detector/issues
Ngôn Ngữ Được Hỗ Trợ 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';"
    }
}