GiveWater

GiveWater

Give clean water every time you search the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GiveWater",
  "manifest_version": 3,
  "version": "1.0.11",
  "description": "Give clean water every time you search the web.",
  "icons": {
    "16": "./images/icon16.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "./images/icon16.png",
      "48": "./images/icon48.png",
      "128": "./images/icon128.png"
    },
    "default_title": "GiveWater"
  },
  "chrome_url_overrides": {
    "newtab": "./newTab.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://www.givewater.com/wp-content/themes/givewater-2019/assets/icons/favicon-32x32.png",
      "is_default": true,
      "keyword": "giveWater",
      "name": "giveWater Search",
      "search_url": "https://givewater.com/search?q={searchTerms}&segment=givewater01"
    }
  },
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.givewater.com/*"
      ],
      "css": [
        "./css/hidePopup.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://*.givewater.com/*"
  ]
}