Netskope Chrome Extension

Netskope Chrome Extension

Extension to enforce Netskope Cloud Explicit Proxy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netskope Chrome Extension",
  "description": "Extension to enforce Netskope Cloud Explicit Proxy",
  "version": "1.2.3",
  "manifest_version": 3,
  "permissions": [
    "proxy",
    "storage",
    "cookies",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://authservice.goskope.com/nsauth/authenticate*",
        "https://authservice.eu.goskope.com/nsauth/authenticate*",
        "https://authservice.au.goskope.com/nsauth/authenticate*",
        "https://authservice.de.goskope.com/nsauth/authenticate*"
      ],
      "js": [
        "autocomplete.js"
      ]
    }
  ],
  "icons": {
    "128": "netskope-logo-128.png"
  },
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "action": {
    "default_popup": "popup.html"
  }
}