Amazon Smile Redirector

Amazon Smile Redirector

Get automatically redirected to smile.amazon.com if you go to the regular, amazon.com site.

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 Smile Redirector",
  "version": "1.1",
  "description": "Get automatically redirected to smile.amazon.com if you go to the regular, amazon.com site.",
  "author": "Patrick Jones",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*"
      ],
      "exclude_globs": [
        "*smile.amazon*"
      ],
      "js": [
        "smileRedirector.js"
      ],
      "run_at": "document_start"
    }
  ]
}