CyberWise

CyberWise

Multilingual detector of phishing, adware, and malware on websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CyberWise",
  "description": "Multilingual detector of phishing, adware, and malware on websites",
  "version": "1.3",
  "default_locale": "en",
  "permissions": [
    "downloads",
    "tabs",
    "storage",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "advertising_block_rule",
        "enabled": false,
        "path": "rules.json"
      }
    ]
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "background": {
    "service_worker": "/scripts/background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/content/locale.js",
        "/scripts/content/black-list.js",
        "/scripts/content/highlighting-phrases.js",
        "/scripts/content/file-download-confirm.js",
        "/scripts/content/countdown-block.js",
        "/scripts/content/popup-confirm.js"
      ],
      "exclude_globs": [
        "*://www.youtube.com/*",
        "*://chat.openai.com/*",
        "chrome://extensions"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup/html/home.html"
  }
}