Inspect and view changes in BeyondTrust Workforce Passwords 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": "BeyondTrust Workforce Passwords",
"description": "Securely use credentials stored in BeyondTrust's Password Safe application to simplify logging into your favorite websites.",
"version": "24.3.1.1",
"manifest_version": 3,
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "images/logo-16.png",
"32": "images/logo-32.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"exclude_globs": [
"chrome-extension://*"
],
"all_frames": true,
"js": [
"lib/browser-polyfill.min.js",
"lib/vendor/psl.min.js",
"lib/utils/feature-flags.js",
"content-scripts/content.js"
],
"css": [
"lib/css/vars.css",
"lib/css/inline.css"
]
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"version.js",
"lib/css/*",
"lib/icons/*",
"lib/utils/*",
"lib/open-sans/*",
"lib/vendor/*",
"content-scripts/*",
"images/logo-32.png"
]
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": false
},
"background": {
"scripts": [
"/lib/browser-polyfill.min.js",
"/lib/vendor/psl.min.js",
"/lib/utils/feature-flags.js",
"/lib/adapters/firefox/copy-to-clipboard.js",
"/background/firefox.js",
"/background/service/localization.js",
"/background/service/create-cred.js",
"/background/service/delete-cred.js",
"/background/service/feature-flags-wrapper.js",
"/background/service/fetch-with-auth.js",
"/background/service/get-cred.js",
"/background/service/get-custom-sites.js",
"/background/service/get-session.js",
"/background/service/search.js",
"/background/service/shared-creds.js",
"/background/service/sync-creds.js",
"/background/service/update-cred.js",
"/background/auth/expiration-check.js",
"/background/auth/ident.js",
"/background/auth/login.js",
"/background/auth/sign-out.js",
"/background/auth/state.js",
"/background/utils/clear-page-data-store.js",
"/background/utils/cred-change-actions.js",
"/background/utils/extract-domain.js",
"/background/utils/find-cred-in-vault.js",
"/background/utils/generate-context-pattern.js",
"/background/utils/generate-endpoint-url.js",
"/background/utils/get-browser.js",
"/background/utils/get-fallback-icon.js",
"/background/utils/initialize.js",
"/background/utils/instance-url.js",
"/background/utils/map-url-to-metadata.js",
"/background/utils/on-installed.js",
"/background/utils/parse-uri-template.js",
"/background/utils/portal.js",
"/background/utils/pre-select.js",
"/background/utils/remove-unused-keys.js",
"/background/utils/run-guarded.js",
"/background/utils/save-icon.js",
"/background/context-menu/context-menu.js",
"/background/badge/badge.js",
"/background/options/options.js",
"/background/background.js"
]
},
"content_security_policy": {
"extension_pages": "default-src *; script-src 'self'; style-src 'unsafe-inline'; img-src * data:;"
},
"permissions": [
"activeTab",
"alarms",
"contextMenus",
"clipboardWrite",
"notifications",
"storage",
"tabs",
"unlimitedStorage"
],
"optional_permissions": [
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "119.0",
"id": "workforce-passwords@beyondtrust.com"
}
}
}