SafeToOpen Online Security

SafeToOpen Online Security

SafeToOpen Online Security protects you against scams, viruses, and phishing web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_extName__",
  "version": "5.0.6",
  "homepage_url": "https://safetoopen.com/",
  "description": "__MSG_appDesc__",
  "short_name": "SafeToOpen",
  "storage": {
    "managed_schema": "schema.json"
  },
  "permissions": [
    "downloads",
    "storage",
    "tabs",
    "alarms",
    "contextMenus",
    "history",
    "pageCapture",
    "webRequest",
    "webNavigation",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>",
    "file:///"
  ],
  "background": {
    "service_worker": "js/worker.js",
    "type": "module",
    "update_url": "https://clients2.google.com/service/update2/crx"
  },
  "action": {
    "default_icon": "images/SafeToOpen_128.png",
    "default_title": "SafeToOpen",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/SafeToOpen_16.png",
    "32": "images/SafeToOpen_32.png",
    "48": "images/SafeToOpen_48.png",
    "128": "images/SafeToOpen_128.png"
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "css/*",
        "js/*",
        "images/*",
        "data/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "file:///"
      ],
      "all_frames": false,
      "js": [
        "js/safetoopen.js",
        "js/psl.min.js",
        "js/enc.js",
        "js/jquery-3.6.1.js",
        "js/html2canvas.min.js",
        "js/patterns.js",
        "js/visuals.js"
      ],
      "css": [
        "css/alerts.css",
        "css/style.css"
      ],
      "run_at": "document_idle",
      "match_about_blank": true
    },
    {
      "js": [
        "js/frames.js",
        "js/jquery-3.6.1.js",
        "js/patterns.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}