HumbleBundle Keys Clipboard

HumbleBundle Keys Clipboard

Save your Humble Bundle entitlements & keys data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HumbleBundle Keys Clipboard",
  "version": "0.78",
  "description": "Save your Humble Bundle entitlements & keys data",
  "manifest_version": 2,
  "content_security_policy": "default-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://www.humblebundle.com/home/keys*"
      ],
      "run_at": "document_idle",
      "js": [
        "scripts/hbKeyPgNameScraper.js",
        "scripts/FileSaver.js",
        "scripts/universalFuncs.js",
        "scripts/APIscript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "web_accessible_resources": [
    "icons/32-clipboard.png",
    "options/options.html"
  ],
  "icons": {
    "16": "icons/16-clipboard.png",
    "32": "icons/32-clipboard.png",
    "48": "icons/48-clipboard.png",
    "128": "icons/128-clipboard.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{94df1f6d-b104-4223-9563-d5514b15a3f3}"
    }
  }
}