Prime Away

Prime Away

Search only for items that are listed without Prime - Saves time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Prime Away",
  "version": "1.4.2",
  "manifest_version": 2,
  "description": "Search only for items that are listed without Prime - Saves time",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-19-off.png",
    "default_title": "Prime Away"
  },
  "background": {
    "page": "background.html"
  },
  "incognito": "spanning",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/popup/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "identity",
    "identity.email",
    "storage"
  ]
}