Safe3 safe browsing

Safe3 safe browsing

Experience More Safe and Secure Web Browsing with Safe3 Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "background": {
    "service_worker": "js/background.js"
  },
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png",
      "300": "icons/icon-300.png"
    }
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "alarms"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ads",
        "enabled": false,
        "path": "rulesets/ads.json"
      },
      {
        "id": "malware",
        "enabled": false,
        "path": "rulesets/malware.json"
      },
      {
        "id": "trackers",
        "enabled": false,
        "path": "rulesets/trackers.json"
      },
      {
        "id": "scams",
        "enabled": false,
        "path": "rulesets/scams.json"
      }
    ]
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "version": "1.0.1",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "300": "icons/icon-300.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/block-page.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}