Graphql network

Graphql network

Devtool page to debug graphql calls

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.3",
  "name": "Graphql network",
  "manifest_version": 2,
  "description": "Devtool page to debug graphql calls",
  "browser_action": {
    "default_title": "GraphDevQL",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "devtools_page": "devtools.html",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "https://github.com/*"
  ],
  "content_security_policy": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}