Makemesmile

Makemesmile

Makemesmile automatically helps ensure that your Amazon purchase can be correctly attributed to Amazon Smile, a charitable program.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Makemesmile",
  "description": "Makemesmile automatically helps ensure that your Amazon purchase can be correctly attributed to Amazon Smile, a charitable program.",
  "version": "1.01",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icons/disable38x38.png",
    "default_title": "Makemesmile"
  },
  "icons": {
    "48": "images/icons/enable48x48.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; script-src 'self' https://connect.facebook.net; object-src 'self'",
  "web_accessible_resources": [
    "content.js",
    "*.png",
    "*.gif"
  ]
}