Inspect and view changes in Netwrix Privilege Secure 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
{
"name": "Netwrix Privilege Secure",
"version": "25.2.26",
"homepage_url": "https://netwrix.com",
"description": "Netwrix Privilege Secure's official web browser extension",
"manifest_version": 3,
"minimum_chrome_version": "116",
"icons": {
"65": "images/icon.png"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content/autofill.js",
"content/lock.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"css": [
"content/autofill.css"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_end"
},
{
"all_frames": true,
"js": [
"content/loginProviderCapture.js"
],
"matches": [
"*://*/extension/login-provider-capture-lZuIbcyuMoahimPgwFIrkZWVxQj1Wni2RZjvg5U7mQdkS4UgHk9DWIJscpbJo49M*"
],
"run_at": "document_start"
}
],
"devtools_page": "devtools/devtools.html",
"host_permissions": [
"http://*/",
"https://*/"
],
"permissions": [
"storage",
"tabs",
"alarms",
"tabCapture",
"browsingData",
"downloads",
"webRequest",
"webRequestAuthProvider",
"contextMenus",
"notifications",
"idle",
"cookies",
"privacy",
"offscreen"
],
"commands": {
"enable-capture": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Enable the Netwrix Privilege Secure session for the current tab"
}
},
"action": {
"default_popup": "popup/index.html"
},
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "img-src data: chrome://favicon *; default-src 'self'; connect-src * data: blob: filesystem:; style-src 'self' data: 'unsafe-inline'; frame-src 'self' data:; font-src 'self' data:; media-src * data: blob: filesystem:;"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}