WebDefender: Antivirus & Privacy Protection

WebDefender: Antivirus & Privacy Protection

WebDefender is a lightweight addon designed to clean browser from malware, prevent phishing and protect your private information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjJdgo4HIWQdS+oNapiBgSuPZzfnpa6mFDkeNAVbWFlhzrZvVU/TEFLKKsqlsPpV7ZfIf697DK2bEJGK/AEzDvIX31SYaLLXuInFb0WQ9nYWqFcgOh05y81rrlolcZsMXvzgM5ymFbShbJoklLbJu6GqucCZlor8llQYt/1/3EkrX4tVKst50vFnb014MmIOgSkBjVaJvLZtrpOFWU07fSXqrXhKdFJgtONQFawXr+0nIM5E7CmQ1QcA6iIA9AjwhslnVh0fApymdntD5lQHW6JqKvwTvW9INnyu5bchKituBOmBFGg6fp3drAIkqJW7ftbk7E1mEyLHsQIgZkixXFwIDAQAB",
  "name": "WebDefender: Antivirus & Privacy Protection",
  "version": "2.0.3",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "WebDefender is a lightweight addon designed to clean browser from malware, prevent phishing and protect your private information.",
  "homepage_url": "https://getwebdefender.com/",
  "short_name": "WebDefender",
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "management",
    "webRequest",
    "notifications",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "dnr_rules",
        "enabled": true,
        "path": "filters/dnr_rules.json"
      }
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "optional_permissions": [
    "contentSettings"
  ],
  "author": "AdAvoid Ltd.",
  "minimum_chrome_version": "88",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "WebDefender",
    "chrome_style": false
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://getwebdefender.com/*",
        "*://*.getwebdefender.com/*"
      ],
      "js": [
        "js/contentScriptWebdefender.bundle.js"
      ]
    },
    {
      "js": [
        "js/gmail-links.bundle.js"
      ],
      "matches": [
        "*://*.mail.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/img/*.png",
        "assets/img/*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}