thegivingmachine

thegivingmachine

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}