WhaleVault

WhaleVault

Secure Graphene Cross-Chain Key Store Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WhaleVault",
  "version": "0.1.49",
  "description": "Secure Graphene Cross-Chain Key Store Extension",
  "permissions": [
    "activeTab",
    "storage",
    "idle"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "images/icons8-safe-50.png",
    "default_title": "WhaleVault :: locked"
  },
  "icons": {
    "128": "images/icons8-safe-ok-128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/icons8-safe-50.png",
        "js/whalevault.js"
      ],
      "matches": [
        "https://*/*",
        "http://0.0.0.0:1337/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://0.0.0.0:1337/*",
        "http://*/*"
      ],
      "js": [
        "vendor/jquery.js",
        "js/web_interface.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3
}