Examine source code of Amazon Smile Redirect

Inspect and view changes in Amazon Smile Redirect source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Amazon Smile Redirect",
  "author": "nitrohorse",
  "short_name": "amazon-smile-redirect",
  "version": "1.2",
  "description": "Redirects Amazon.com, Amazon.de, and Amazon.co.uk links to Smile.Amazon.* so that you don't forget to contribute to your favorite non-profit ❤ \n\nFree and open-source.",
  "icons": {
    "64": "icons/icon-64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://www.amazon.de/*",
        "https://www.amazon.co.uk/*"
      ],
      "run_at": "document_start",
      "js": [
        "content_scripts/redirect.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e29e4438-bd22-4356-bf0a-286ef55a7e27}"
    }
  }
}