Is Gatsby?

Is Gatsby?

Tell if a page is built using Gatsby

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "js/check-gatsby.js"
      ],
      "run_at": "document_end"
    }
  ],
  "author": "Sriram Thiagarajan"
}