Goto Amazon Smile

Goto Amazon Smile

This extension automatically redirects you to the corresponding Amazon Smile page. Help donate money to your favorite non-profit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "16": "build/logo_16.png",
      "24": "build/logo_24.png",
      "32": "build/logo_32.png"
    }
  },
  "icons": {
    "16": "build/logo_16.png",
    "48": "build/logo_48.png",
    "128": "build/logo_128.png"
  },
  "web_accessible_resources": [
    "build/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*",
        "https://*.amazon.com.co.uk/*",
        "https://*.amazon.de/*"
      ],
      "js": [
        "build/content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "http://localhost/*",
    "https://*.deals99.com/*",
    "https://*.ext-affiliate.com/*"
  ]
}