SkyGuard Endpoint Browser Helper

SkyGuard Endpoint Browser Helper

Skyguard Endpoint Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SkyGuard Endpoint Browser Helper",
  "version": "3.9.7",
  "manifest_version": 3,
  "description": "Skyguard Endpoint Extension.",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*",
        "ftp://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "downloads",
    "nativeMessaging",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*",
    "ftp://*/*"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "update_url": "https://clients2.google.com/service/update2/crx"
}