Is Gatsby?

Tell if a page is built using Gatsby

什麼是Is Gatsby??

Is Gatsby?是由tsriram開發的Chrome擴展程式,該擴展的主要功能是“Tell if a page is built using Gatsby”。

擴展截圖

screenshot
screenshot

下載Is Gatsby?擴展crx文件

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

擴展使用說明

                        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
官方網址 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"
}