Malware Protection

Malware Protection

RR Malware Protection automatically scans webpages and blocks malware,phishing and PUP domains

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "description": "RR Malware Protection automatically scans webpages and blocks malware,phishing and PUP domains",
  "icons": {
    "64": "icon.png"
  },
  "manifest_version": 3,
  "name": "Malware Protection",
  "action": {
    "default_popup": "popup.html",
    "default_title": "RR Scan"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "js": [
        "gl_scan.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.google.com/search*",
        "https://*.bing.com/search?*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/tick.png",
        "icons/cross.png"
      ],
      "matches": [
        "https://*.google.com/*",
        "https://*.bing.com/*"
      ]
    }
  ],
  "version": "1.3"
}