Is Gatsby?

Tell if a page is built using Gatsby

Qu'est-ce que Is Gatsby? ?

Is Gatsby? est une extension Chrome développée par tsriram, et sa fonction principale est "Tell if a page is built using Gatsby".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Is Gatsby?

Téléchargez les fichiers d'extension Is Gatsby? au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Is Gatsby? Is Gatsby?
ID jgaejkhmgkpagdmapahohjennkhbpgfj
URL Officiel https://chromewebstore.google.com/detail/is-gatsby/jgaejkhmgkpagdmapahohjennkhbpgfj
Description Tell if a page is built using Gatsby
Taille du Fichier 8.19 KB
Nombre d'Installations 421
Version Actuelle 1.2
Dernière Mise à Jour 2019-01-04
Date de Publication 2019-01-04
Évaluation 5.00/5 Total 2 Évaluations
Développeur tsriram
Type de Paiement free
Langues Prises en Charge 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"
}