Hive Keychain

Hive Keychain

Secure Hive Wallet Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_keychain__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "3.3.1",
  "permissions": [
    "storage",
    "idle",
    "alarms"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/assets/images/iconhive.png"
  },
  "icons": {
    "128": "/assets/images/iconhive.png"
  },
  "background": {
    "service_worker": "backgroundBundle.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/logo.png",
        "hive_keychain.js",
        "_locales/*"
      ],
      "matches": [
        "https://*/*",
        "http://0.0.0.0:1337/*",
        "http://*/*"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://0.0.0.0:1337/*",
        "http://*/*"
      ],
      "js": [
        "keychainifyBundle.js",
        "web_interfaceBundle.js"
      ]
    }
  ],
  "manifest_version": 3
}