Next Reveal

Next Reveal

The Next Reveal Browser Extension provides an Enterprise with Security Analytics to protect against Insider Threats. The extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Next Reveal",
  "version": "3.2.3",
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "manifest_version": 3,
  "permissions": [
    "nativeMessaging",
    "webNavigation",
    "webRequest",
    "downloads",
    "tabs",
    "management",
    "clipboardRead"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "next-logomark.svg",
        "circle-spinner.svg",
        "upload_patch.js",
        "upload_fileaccessapi.js",
        "upload_element_creation.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}