{
  "version": "4.15.2",
  "name": "Apollo Client Devtools",
  "description": "GraphQL debugging tools for Apollo Client.",
  "icons": {
    "64": "images/logo64.png",
    "128": "images/logo128.png",
    "400": "images/logo400.png"
  },
  "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,
  "host_permissions": [
    "<all_urls>"
  ]
}