Cipafilter Authenticator

Cipafilter Authenticator

Authenticate with Cipafilter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cipafilter Authenticator",
  "description": "Authenticate with Cipafilter",
  "version": "0.1.5",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "background",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "tabs",
    "activeTab",
    "alarms",
    "proxy",
    "scripting"
  ],
  "icons": {
    "16": "gfx/icon16.png",
    "48": "gfx/icon48.png",
    "128": "gfx/icon128.png"
  },
  "action": {
    "default_icon": "gfx/icon48.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}