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
公式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"
}