iGive Button

iGive Button

Turn shopping, searching, and bookmarking into free donations for your charity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "iGive Button",
  "version": "10.0.0.0",
  "description": "Turn shopping, searching, and bookmarking into free donations for your charity.",
  "homepage_url": "https://www.igive.com",
  "manifest_version": 3,
  "author": "iGive.com Holdings LLC",
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "cookies",
    "alarms"
  ],
  "background": {
    "service_worker": "bg/bundle.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content/*.css",
        "content/*.svg",
        "icon-128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "host_permissions": [
    "*://*.igive.com/*"
  ],
  "action": {
    "default_icon": "icon-128.png",
    "default_title": "iGive button",
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}