easyfundraising Donation Reminder

easyfundraising Donation Reminder

Never miss a donation for your charity or good cause again with the easyfundraising donation reminder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "easyfundraising Donation Reminder",
  "description": "Never miss a donation for your charity or good cause again with the easyfundraising donation reminder",
  "version": "6.2.0",
  "homepage_url": "https://www.easyfundraising.org.uk/",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "cookies",
    "storage",
    "tabs",
    "webRequest"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "easyfundraising Donation Reminder",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/easyfundraising/default/128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "pageload.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://mail.*/*",
        "*://*.youtube.*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "serps.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "include_globs": [
        "*://www.google.*/*",
        "*://www.bing.*/*",
        "*://www2.bing.*/*",
        "*://uk.search.yahoo.*/*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "js": [
        "homepage.js"
      ],
      "matches": [
        "*://*.easyfundraising.org.uk/*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "js": [
        "retailer.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://mail.*/*",
        "*://*.google.*/*",
        "*://*.bing.*/*",
        "*://*.youtube.*/*",
        "*://uk.search.yahoo.*/*",
        "*://*.easyfundraising.org.uk/*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "icons/easyfundraising/default/128.png"
  },
  "minimum_chrome_version": "88"
}