GHunt Companion

GHunt Companion

Load all needed cookies to use GHunt peacefully.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GHunt Companion",
  "version": "2.0.0",
  "description": "Load all needed cookies to use GHunt peacefully.",
  "icons": {
    "48": "assets/ghunt_square.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.google.com/*",
    "storage",
    "cookies"
  ],
  "content_scripts": [
    {
      "js": [
        "lib/browser-polyfill.min.js"
      ],
      "matches": [
        "*://*.google.com/*"
      ]
    }
  ],
  "background": {
    "page": "background/background.html"
  },
  "web_accessible_resources": [
    "popup/interface.html"
  ],
  "browser_action": {
    "default_icon": "assets/ghunt_square.png",
    "default_title": "GHunt Companion",
    "default_popup": "popup/interface.html"
  }
}