Amazon Prime Search

Amazon Prime Search

Search only for items that are eligible for Amazon Prime -- save time combing through search results to get free 2-day shipping!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "transform.js"
      ],
      "matches": [
        "*://www.amazon.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Search only for items that are eligible for Amazon Prime -- save time combing through search results to get free 2-day shipping!",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Amazon Prime Search",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Toggle Prime Search"
  },
  "background": {
    "page": "background.html"
  }
}