givvum

givvum

Chrome browser extension for givvum app

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "givvum",
  "description": "Chrome browser extension for givvum app",
  "version": "1.0.2",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "alarms",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "minimum_chrome_version": "92",
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "https://localhost/*",
        "https://*.givvum.com/*",
        "https://givvum-staging.web.app/*",
        "https://givvum-staging.firebaseapp.com/*"
      ],
      "js": [
        "scripts/content/loginLogout.js"
      ]
    }
  ],
  "icons": {
    "16": "GivvumBow.png",
    "48": "GivvumBow.png",
    "128": "GivvumBow.png"
  },
  "externally_connectable": {
    "matches": [
      "http://localhost/*",
      "https://localhost/*",
      "https://*.givvum.com/*",
      "https://givvum-staging.web.app/*",
      "https://givvum-staging.firebaseapp.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}