MOBOX WALLET

MOBOX WALLET

DEVELOPED BY TEAM MOBOX

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MOBOX WALLET",
  "version": "1.1.3",
  "description": "DEVELOPED BY TEAM MOBOX ",
  "icons": {
    "16": "images/icon1.png",
    "48": "images/icon1.png",
    "128": "images/icon1.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon1.png",
      "38": "images/icon1.png"
    },
    "default_title": "MBOX Wallet",
    "default_popup": "index.html"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "static/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "declarativeContent",
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    "static/js/pageHook.js"
  ]
}