eBay™ & Amazon™ Adblocker No Ads & Sponsored

eBay™ & Amazon™ Adblocker No Ads & Sponsored

Remove adverts & 'sponsored' items from Amazon & eBay.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "eBay™ & Amazon™ Adblocker No Ads & Sponsored",
  "short_name": "eBay/Amazon Adblocker",
  "version": "1.5",
  "description": "Remove adverts & 'sponsored' items from Amazon & eBay.",
  "author": "Matthew Ogborne [email protected]",
  "content_scripts": [
    {
      "matches": [
        "*://*.ebay.com/*",
        "*://*.amazon.com/*",
        "*://*.ebay.co.uk/*",
        "*://*.amazon.co.uk/*",
        "*://*.ebay.de/*",
        "*://*.amazon.de/*",
        "*://*.ebay.com.au/*",
        "*://*.amazon.com.au/*",
        "*://*.ebay.ca/*",
        "*://*.ebay.ch/*",
        "*://*.ebay.fr/*",
        "*://*.ebay.it/*",
        "*://*.ebay.es/*",
        "*://*.ebay.ca/*",
        "*://*.ebay.in/*",
        "*://*.ebay.be/*",
        "*://*.cafr.ebay.ca/*",
        "*://*.ebay.com.hk/*",
        "*://*.ebay.com.my/*",
        "*://*.ebay.ie/*",
        "*://*.ebay.nl/*",
        "*://*.ebay.ph/*",
        "*://*.ebay.com.sg/*",
        "*://*.amazon.de/*",
        "*://*.amazon.fr/*",
        "*://*.amazon.it/*",
        "*://*.amazon.es/*",
        "*://*.amazon.ca/*",
        "*://*.amazon.in/*",
        "*://*.amazon.cn/*",
        "*://*.amazon.nl/*",
        "*://*.amazon.co.jp/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "images/*.png",
    "options.js"
  ],
  "permissions": [
    "storage"
  ]
}