CyberArk Secure Web Sessions Extension

CyberArk Secure Web Sessions Extension

Protect web-apps with CyberArk Secure Web Sessions. Offers step-recording, continuous authentication, and session protection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CyberArk Secure Web Sessions Extension",
  "default_locale": "en",
  "description": "Protect web-apps with CyberArk Secure Web Sessions. Offers step-recording, continuous authentication, and session protection.",
  "version": "2.1.22801",
  "version_name": "2.1.22801 (prod)",
  "incognito": "spanning",
  "icons": {
    "32": "images/regular/32.png",
    "48": "images/regular/48.png",
    "128": "images/regular/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_script.js"
      ],
      "css": [
        "css/session-control.css",
        "css/toast-message.css",
        "css/session-control-popup-message.css",
        "css/user-app-logout.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ca-iframe.html",
        "sc-block-url-iframe.html",
        "network-encapsulation.js",
        "css/*",
        "fonts/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "alarms",
    "notifications",
    "nativeMessaging",
    "downloads",
    "unlimitedStorage",
    "cookies",
    "gcm",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "<all_urls>",
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup/popup.html"
  }
}