Cyano Wallet Pro

Cyano Wallet Pro

Cyano Wallet Pro - an Ontology wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cyano Wallet Pro",
  "author": "Matus Zamborsky <[email protected]>",
  "description": "Cyano Wallet Pro - an Ontology wallet",
  "version": "0.1.1",
  "browser_action": {
    "default_title": "Cyano Wallet Pro"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/static/js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "32": "logo32.png",
    "48": "favicon.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "http://127.0.0.1/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "externally_connectable": {
    "ids": []
  }
}