Is Gatsby?

Tell if a page is built using Gatsby

ما هو Is Gatsby?؟

Is Gatsby? هو إضافة Chrome تم تطويرها بواسطة tsriram، والميزة الرئيسية لها هي "Tell if a page is built using Gatsby".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Is Gatsby?

قم بتنزيل ملفات الامتداد Is Gatsby? بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A small extension to tell if a site/page is built using Gatsby. 

Extension icon shows up in Gatsby's purple color if the page appears to be built using Gatsby and grayed out if it's not.

This requires permission for all the sites you visit so that it can check if it's built using Gatsby. It does not do any evil thing :)

Source code is here - https://github.com/tsriram/is-gatsby - if you'd like to check                    

معلومات أساسية عن التمديد

الاسم Is Gatsby? Is Gatsby?
ID jgaejkhmgkpagdmapahohjennkhbpgfj
عنوان URL الرسمي https://chromewebstore.google.com/detail/is-gatsby/jgaejkhmgkpagdmapahohjennkhbpgfj
الوصف Tell if a page is built using Gatsby
حجم الملف 8.19 KB
عدد التثبيتات 421
النسخة الحالية 1.2
آخر تحديث 2019-01-04
تاريخ النشر 2019-01-04
تقييم 5.00/5 مجموع تقييمات 2
المطور tsriram
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Is Gatsby?",
    "version": "1.2",
    "description": "Tell if a page is built using Gatsby",
    "homepage_url": "https:\/\/github.com\/tsriram\/is-gatsby",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "icons\/icon32-gray.png",
        "default_title": "This page doesn't appear to be built with Gatsby :("
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/check-gatsby.js"
            ],
            "run_at": "document_end"
        }
    ],
    "author": "Sriram Thiagarajan"
}