Good People Click

Good People Click

We donate to charities when you shop online, at no extra cost to you

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Good People Click",
  "description": "We donate to charities when you shop online, at no extra cost to you",
  "version": "1.3.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Good People Click"
  },
  "icons": {
    "16": "activeIcon-16.png",
    "48": "activeIcon-48.png",
    "128": "activeIcon-128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.google.com/search?*"
      ],
      "js": [
        "./static/js/injectedLogo.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "whiteIcon-128.png",
        "activeIcon-128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}