GHunt Companion

Load all needed cookies to use GHunt peacefully.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}