SafeSurf

SafeSurf

Extension to detect malicious websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SafeSurf",
  "version": "1.1",
  "icons": {
    "16": "imgs/extension icon - 16.png",
    "32": "imgs/icon - 32.png",
    "48": "imgs/icon - 48.png",
    "128": "imgs/Popup - with name.png"
  },
  "description": "Extension to detect malicious websites.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup_safe.html",
    "default_title": "SafeSurf",
    "default_icon": {
      "16": "imgs/extension icon - 16.png",
      "32": "imgs/icon - 32.png",
      "48": "imgs/icon - 48.png",
      "128": "imgs/Popup - with name.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content.js"
      ]
    }
  ]
}