WebGiv

WebGiv

Use the WebGiv extension to raise money for our cause at no cost to yourself! Look for our logo when searching online!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebGiv",
  "version": "1.0.46",
  "description": "Use the WebGiv extension to raise money for our cause at no cost to yourself! Look for our logo when searching online!",
  "homepage_url": "http://webgiv.com",
  "manifest_version": 2,
  "default_locale": "en",
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "128": "assets/icons/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "assets/fonts.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "polyfills.js",
      "runtime.js"
    ]
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "history",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "*.ttf",
    "*.woff2",
    "*.woff",
    "*.eot",
    "*.svg"
  ]
}