Apollo Client Devtools

Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "4.11.5",
  "author": "Apollo",
  "name": "Apollo Client Devtools",
  "description": "GraphQL debugging tools for Apollo Client.",
  "icons": {
    "64": "images/logo64.png",
    "128": "images/logo128.png",
    "400": "images/logo400.png"
  },
  "page_action": {},
  "devtools_page": "devtools.html",
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "panel.html",
        "devtools.html",
        "hook.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tab.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "hook.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    }
  ],
  "manifest_version": 3
}