Helping My Cause - Shopping With Benefits

Helping My Cause - Shopping With Benefits

Shop at your favorite online stores and automatically donate a portion of what you spend to the cause of your choice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Helping My Cause - Shopping With Benefits",
  "version": "1.1",
  "description": "Shop at your favorite online stores and automatically donate a portion of what you spend to the cause of your choice.",
  "icons": {
    "16": "media/icon16.png",
    "48": "media/icon48.png",
    "128": "media/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "http://www.helpingmycause.com/",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "hmc.js"
      ],
      "run_at": "document_start"
    }
  ]
}