Examine source code of CyberArk Identity Browser Extension

Inspect and view changes in CyberArk Identity Browser Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CyberArk Identity Browser Extension",
  "version": "25.5.1",
  "author": "CyberArk Software Ltd.",
  "manifest_version": 3,
  "incognito": "split",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "all/brand-common.js",
        "all/brand-chrome.js",
        "content/brand-common.js",
        "all/commonBrowserApi.js",
        "content/locale/en.js",
        "all/crossover.js",
        "all/common.js",
        "all/crossBackground.js",
        "all/util.js",
        "content/common.js",
        "content/toast.js",
        "content/messagebox.js",
        "all/chrome-common.js",
        "content/centrify-start.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/centrify-end.js",
        "content/formfill.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "v2/content/content.js",
        "bridge/content2webpack.js",
        "content/centrify-idle.js"
      ],
      "css": [
        "content/style-idle.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "homepage_url": "https://www.cyberark.com",
  "offline_enabled": false,
  "options_page": "options/options.html",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_permissions": [
    "privacy"
  ],
  "action": {
    "default_icon": {
      "19": "icons/19disabled.png",
      "38": "icons/38disabled.png"
    },
    "default_popup": "popover/popover.html"
  },
  "permissions": [
    "storage",
    "webRequest",
    "cookies",
    "tabs",
    "contextMenus",
    "clipboardWrite",
    "offscreen",
    "scripting",
    "unlimitedStorage",
    "webRequestAuthProvider"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "all/fonts/fa-regular-400.woff2",
        "all/fonts/fa-solid-900.woff2",
        "all/fonts/open-sans.css",
        "all/fonts/Open-Sans/open-sans-300.woff2",
        "all/fonts/Open-Sans/open-sans-400.woff2",
        "all/fonts/Open-Sans/open-sans-600.woff2",
        "all/fonts/Open-Sans/open-sans-700.woff2",
        "all/fonts/Open-Sans/open-sans-800.woff2",
        "content/style-idle.css",
        "popover/images/copy-password-icon.svg",
        "popover/images/refresh.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "hedanjndhigomjmbgimklpdiohcphlna",
      "ohfinlfcbaehgokpmkjcmkgdcbgamgln",
      "maddmjjpgcinmmgiacppoimhoohgbmch",
      "bnjbkphpbahhfkebhkcpcagefifmoplb"
    ]
  }
}