WaykiMax

WaykiMax

A WaykiChain Wallet in your Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WaykiMax",
  "version": "2.2.2",
  "description": "A WaykiChain Wallet in your Browser",
  "author": "[email protected]",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "<all_urls>",
    "*://*/*",
    "activeTab",
    "tabs",
    "unlimitedStorage",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "128": "icons/128.png"
    },
    "default_title": "WaykiMax",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "page": "pages/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "panel.html",
    "js/content.js"
  ]
}