Amazon All-Stars

Amazon All-Stars

Never buy junk, again. Amazon All-Stars filters out products below a certain rating from your Amazon search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon All-Stars",
  "short_name": "AllStars",
  "version": "1.0.1.3",
  "description": "Never buy junk, again.  Amazon All-Stars filters out products below a certain rating from your Amazon search results.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.com/*",
        "*://www.amazon.com.au/*",
        "*://www.amazon.com.br/*",
        "*://www.amazon.ca/*",
        "*://www.amazon.cn/*",
        "*://www.amazon.fr/*",
        "*://www.amazon.de/*",
        "*://www.amazon.in/*",
        "*://www.amazon.it/*",
        "*://www.amazon.co.jp/*",
        "*://www.amazon.com.mx/*",
        "*://www.amazon.nl/*",
        "*://www.amazon.es/*",
        "*://www.amazon.co.uk/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "optionsfull.html",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "tabs",
    "activeTab",
    "*://www.amazon.com/*",
    "*://www.amazon.com.au/*",
    "*://www.amazon.com.br/*",
    "*://www.amazon.ca/*",
    "*://www.amazon.cn/*",
    "*://www.amazon.fr/*",
    "*://www.amazon.de/*",
    "*://www.amazon.in/*",
    "*://www.amazon.it/*",
    "*://www.amazon.co.jp/*",
    "*://www.amazon.com.mx/*",
    "*://www.amazon.nl/*",
    "*://www.amazon.es/*",
    "*://www.amazon.co.uk/*"
  ],
  "icons": {
    "128": "allstarsicon4.png"
  }
}