Cyvore background extension

Cyvore background extension

Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cyvore background extension",
  "version": "1.2",
  "manifest_version": 3,
  "description": "Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk.",
  "icons": {
    "16": "assets/cySm.png",
    "32": "assets/cyMd.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html"
}