bottos-wallet

bottos-wallet

bottos 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,
  "version": "2.1.0",
  "name": "bottos-wallet",
  "description": "bottos wallet chrome extension",
  "browser_action": {
    "default_icon": "static/img/icon.png",
    "default_title": "Bottos Chrome Wallet",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bottos.org/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "cookies",
    "https://robot.botfans.org/*",
    "https://robot.chainbottos.com/*"
  ]
}