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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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';"
    }
}