Inspect and view changes in OmniDefend SSO 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
{
"name": "OmniDefend SSO Extension",
"short_name": "OD SSO",
"description": "OmniDefend's Single Sign-on feature to enable easy access to websites and applications.",
"version": "2.1.2.22192",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{a5d4add6-5b64-49b7-88fc-98aeb49c6106}",
"strict_min_version": "58.0"
}
},
"icons": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"default_popup": "popup/html/popup.html"
},
"options_ui": {
"page": "options/html/options.html"
},
"background": {
"scripts": [
"common/extApi.js",
"common/common.js",
"libs/js/jquery.js",
"libs/js/omnidefend/common.js",
"libs/js/omnidefend/ajaxClient.js",
"libs/js/omnidefend/tokenClient.js",
"background/background.js"
],
"persistent": true
},
"web_accessible_resources": [
"iframe/css/*.css",
"iframe/html/*.html",
"iframe/js/*.js",
"popup/css/*.css",
"popup/html/*.html",
"popup/js/*.js",
"mfa/*.html",
"mfa/*.js",
"resources/*.png",
"libs/css/*.css",
"libs/js/*.js",
"libs/js/omnidefend/*.js",
"content/js/module.js",
"html/*.html",
"common/*.js",
"https://*/*"
],
"permissions": [
"nativeMessaging",
"storage",
"https://*/*",
"http://*/*",
"file:///*"
],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*",
"file:///*"
],
"css": [
"content/css/iframe.css",
"libs/css/jquery-ui.min.css"
],
"js": [
"common/extApi.js",
"common/common.js",
"libs/js/jquery.js",
"libs/js/jquery-ui.min.js",
"libs/js/bililiteRange.js",
"libs/js/jquery.sendkeys.js",
"libs/js/build-selector.js",
"libs/js/psl.min.js",
"libs/js/rando-min.js",
"libs/js/omnidefend/common.js",
"libs/js/omnidefend/transactionModel.js",
"libs/js/omnidefend/ajaxClient.js",
"libs/js/omnidefend/baseClient.js",
"libs/js/omnidefend/authClient.js",
"libs/js/omnidefend/tokenClient.js",
"libs/js/omnidefend/userClient.js",
"libs/js/omnidefend/userCredentialClient.js",
"content/js/ssoProcessing/genericSites.js",
"content/js/appFns.js",
"content/js/messaging.js",
"content/js/iframe.js",
"content/js/main.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"https://*/*fromPopup*"
],
"css": [],
"js": [
"mfa/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}