Bid-O-Matic BE

Bid-O-Matic BE

A browser extension to perform automated bids for eBay items, also when you are away from your computer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.5.7",
  "name": "__MSG_appName__",
  "short_name": "BOM",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "vendor/browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_appOpen__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://offer.ebay.com/*",
        "https://offer.ebay.de/*"
      ],
      "js": [
        "contentScript_offer.bundle.js"
      ]
    }
  ],
  "permissions": [
    "https://*.ebay.com/*",
    "https://*.ebay.de/*",
    "activeTab",
    "storage",
    "power"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "minimum_chrome_version": "71",
  "manifest_version": 2
}