Sur.ly Surfguard

Sur.ly Surfguard

Sur.ly Surfguard shows safety status of a link before you click on it. It highlights links with adult or malware content.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sur.ly Surfguard",
  "description": "Sur.ly Surfguard shows safety status of a link before you click on it. It highlights links with adult or malware content.",
  "version": "2.1",
  "action": {
    "default_icon": "static/images/icons/default-4x.png",
    "default_title": "Sur.ly Surfguard",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "static/images/icons/default-4x.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/js/Surly.min.js",
        "static/js/jquery.js",
        "static/js/common.js",
        "static/js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "static/images/*.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "https://sur.ly/*"
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}