ShopSuey: Get rid of ads on Amazon, Ebay and more

ShopSuey: Get rid of ads on Amazon, Ebay and more

Browser extension to get rid of sponsored search results from Amazon, Ebay, and other online shops.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ShopSuey: Get rid of ads on Amazon and Ebay",
  "short_name": "shopsuey",
  "version": "1.2.0",
  "description": "Chrome extension that gets rid of ads + sponsored products on Amazon and eBay, and improves the layout and flow of the sites.",
  "author": "Monji Dolon",
  "permissions": [
    "*://*.amazon.com/*",
    "*://*.amazon.co.uk/*",
    "*://*.amazon.ca/*",
    "*://*.amazon.fr/*",
    "*://*.amazon.de/*",
    "*://*.amazon.es/*",
    "*://*.amazon.it/*",
    "*://*.amazon.com.au/*",
    "*://*.amazon.co.jp/*",
    "*://*.ebay.com/*",
    "*://*.ebay.co.uk/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*",
        "*://*.amazon.co.uk/*",
        "*://*.amazon.ca/*",
        "*://*.amazon.fr/*",
        "*://*.amazon.de/*",
        "*://*.amazon.co.jp/*",
        "*://*.ebay.com/*",
        "*://*.ebay.co.uk/*"
      ],
      "js": [
        "contentscript.bundle.js"
      ],
      "css": [
        "shopsuey.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "icons": {
    "16": "images/shopsuey-16.png",
    "48": "images/shopsuey-48.png",
    "128": "images/shopsuey-128.png"
  }
}