thegivingmachine

thegivingmachine

Never miss a free donation for your chosen cause! Designed for your desktop and laptop, TheGivingMachine's Shop&Give reminder sits…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "thegivingmachine",
  "version": "5.0.13",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "webNavigation"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "The Giving Machine",
    "default_icon": {
      "16": "assets/tgm-16.png",
      "32": "assets/tgm-32.ico",
      "48": "assets/tgm-48.png",
      "128": "assets/tgm-128.png"
    }
  },
  "icons": {
    "16": "assets/tgm-16.png",
    "32": "assets/tgm-32.ico",
    "48": "assets/tgm-48.png",
    "128": "assets/tgm-128.png"
  }
}