Amazon Filter

Amazon Filter

An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazon Filter",
  "version": "1.2",
  "description": "An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.",
  "permissions": [
    "declarativeContent",
    "tabs",
    "https://www.amazon.com/",
    "http://www.amazon.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "backup_popup.html",
    "default_icon": {
      "16": "images/bw_get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/",
        "https://www.amazon.com/*"
      ],
      "js": [
        "jquery.js",
        "main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}