Is Gatsby?

Tell if a page is built using Gatsby

Is Gatsby? là gì?

Is Gatsby? là một tiện ích mở rộng Chrome được phát triển bởi tsriram, và tính năng chính của nó là "Tell if a page is built using Gatsby".

Ả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 Is Gatsby?

Tải xuống các tệp mở rộng Is Gatsby? 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

                        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                    

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

Tên Is Gatsby? Is Gatsby?
ID jgaejkhmgkpagdmapahohjennkhbpgfj
URL Chính Thức https://chromewebstore.google.com/detail/is-gatsby/jgaejkhmgkpagdmapahohjennkhbpgfj
Mô tả Tell if a page is built using Gatsby
Kích Thước Tệp 8.19 KB
Số Lần Cài Đặt 421
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-01-04
Ngày Phát Hành 2019-01-04
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển tsriram
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}