ImpactKarma

ImpactKarma

Make the world a better place each time you shop online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": {
      "38": "icons/green_logo.png"
    },
    "default_title": "ImpactKarma",
    "default_popup": "register.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "default_locale": "en",
  "description": "Make the world a better place each time you shop online",
  "icons": {
    "128": "icons/green_logo.png"
  },
  "manifest_version": 2,
  "name": "ImpactKarma",
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js",
      "jquery-3.4.1.js",
      "uuidjs.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "http://www.amazon.com/*",
        "https://smile.amazon.com/*",
        "http://smile.amazon.com/*"
      ],
      "js": [
        "jquery-3.4.1.js",
        "content.js",
        "uuidjs.js"
      ]
    }
  ],
  "version": "1.9",
  "web_accessible_resources": [
    "icons/*",
    "popover/*"
  ]
}