Examine source code of amz-ref-remover

Inspect and view changes in amz-ref-remover 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 Ref Remover",
  "version": "1.2",
  "description": "Removes 'ref' parameter from Amazon links (.de, .com, .co.uk)",
  "icons": {
    "128": "icons/ref_logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.de/*",
        "*://*.amazon.com/*",
        "*://*.amazon.co.uk/*"
      ],
      "js": [
        "refremover.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d45762ed-0b0a-4404-ab1e-b3d85fe0944b}"
    }
  }
}