GuardWeb: Chrome Antivirus Protection

GuardWeb: Chrome Antivirus Protection

Stay safe while browsing on the Internet and avoid online scammers. Protect your digital privacy and enjoy safe browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GuardWeb: Chrome Antivirus Protection",
  "short_name": "GuardWeb",
  "version": "1",
  "description": "Stay safe while browsing on the Internet and avoid online scammers. Protect your digital privacy and enjoy safe browsing experience.",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png",
    "256": "images/256.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/app.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "declarativeNetRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}