Byone

Byone

Bytom Wallet Chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Byone",
  "description": "Bytom Wallet Chrome extension.",
  "version": "3.4.5",
  "author": "Bytom frontend, zhitinglin",
  "web_accessible_resources": [
    "js/inject.js"
  ],
  "browser_action": {
    "default_popup": "pages/popup.html",
    "default_icon": "icons/logo.png"
  },
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "permissions": [
    "*://*/",
    "storage",
    "unlimitedStorage",
    "background"
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval' https://www.google-analytics.com/analytics.js; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}