Curium

Curium

Browser extension wallet for the Bluzelle network.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Curium",
  "description": "Browser extension wallet for the Bluzelle network.",
  "version": "0.8.8",
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Curium"
  },
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.bundle.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "notifications",
    "https://staking.bluzelle.com/*",
    "https://staging.staking.bluzelle.com/*",
    "http://integration.staking.bluzelle.com/*",
    "https://callofdata.bluzelle.com/*",
    "https://bluzelle.github.io/call-of-data/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://staking.bluzelle.com/*",
        "https://staging.staking.bluzelle.com/*",
        "http://integration.staking.bluzelle.com/*",
        "https://callofdata.bluzelle.com/*",
        "https://bluzelle.github.io/call-of-data/*"
      ],
      "js": [
        "browser-polyfill.js",
        "contentScripts.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "injectedScript.bundle.js",
    "assets/temp-icon.svg"
  ]
}