BitcoinBack

BitcoinBack

BitcoinBack 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": "BitcoinBack",
  "version": "1.6",
  "description": "BitcoinBack Chrome Extension",
  "externally_connectable": {
    "matches": [
      "*://*.bitcoinback.com.br/*",
      "*://*.prebitcoinback.com/*"
    ]
  },
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon-16.png",
      "24": "img/icon-24.png",
      "32": "img/icon-32.png",
      "48": "img/icon-48.png"
    }
  },
  "icons": {
    "16": "img/chrome-webstore-icon-16.png",
    "48": "img/chrome-webstore-icon-48.png",
    "128": "img/chrome-webstore-icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ]
}