Procause

Procause

ProCause extension allows you to connect with businesses that support the causes you care about. When you make searches on the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Procause",
  "version": "1.2",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "background": {
    "service_worker": "background.js"
  },
  "omnibox": {
    "keyword": "procause"
  },
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Pro Cause",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "https://procause.org/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.com/*",
        "https://*/*"
      ],
      "js": [
        "vendor/jquery-3.4.1.min.js",
        "content.js",
        "content2.js",
        "vendor/axios.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "main.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}