Symantec Extension

Symantec Extension

Works along with a Symantec Information Security product to secure sensitive information based on company policy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Symantec Extension",
  "version": "16.0.101",
  "description": "Works along with a Symantec Information Security product to secure sensitive information based on company policy.",
  "icons": {
    "16": "icons/symantec_logo_16.png",
    "48": "icons/symantec_logo_48.png",
    "128": "icons/symantec_logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "ContentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}