Inspect and view changes in CyberArk Secure Web Sessions 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
{
"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.2.32701",
"version_name": "2.2.32701 (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",
"mfa-iframe.html",
"sc-block-url-iframe.html",
"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"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}