YOUWallet

YOUWallet

The wallet extension for YOUChain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YOUWallet",
  "short_name": "YOUWallet",
  "description": "The wallet extension for YOUChain.",
  "version": "1.0.6",
  "manifest_version": 2,
  "icons": {
    "19": "images/icon_19.png",
    "38": "images/icon_38.png",
    "128": "images/icon_128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.iyouchain.com; object-src 'self'",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "http://localhost:8283/",
    "activeTab",
    "webRequest",
    "*://*.you/",
    "http://*/*",
    "notifications"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "index.html",
    "scripts/inject.js",
    "styles/inject.css"
  ],
  "browser_action": {
    "default_title": "YOU",
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_popup": "index.html"
  }
}