Inspect and view changes in Dark CPI 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": "Dark CPI",
"version": "2.5.0.2",
"description": "Extension provides control to change theme to dark mode for SAP integration suite (CPI)",
"author": "Omkar Patel",
"homepage_url": "https://incpi.vercel.app/blog/83efd",
"host_permissions": [
"https://*.hana.ondemand.com/itspaces/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/shell/*"
],
"icons": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
},
"cross_origin_opener_policy": {
"value": "same-origin"
},
"cross_origin_embedder_policy": {
"value": "require-corp"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; connect-src 'self'"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.hana.ondemand.com/itspaces/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/shell/*"
],
"include_globs": [
"https://*.hana.ondemand.com/itspaces/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/shell/*",
"https://*.integrationsuite.cfapps.*.hana.ondemand.com/*",
"https://?????-tmn.hci.*.hana.ondemand.com/*"
],
"js": [
"script/OnInit.js"
],
"css": [
"style/custom.css",
"style/general.css"
]
},
{
"matches": [
"https://*.hana.ondemand.com/itspaces/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/shell/*"
],
"include_globs": [
"https://*.hana.ondemand.com/itspaces/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/shell/*",
"https://*.integrationsuite.cfapps.*.hana.ondemand.com/*",
"https://?????-tmn.hci.*.hana.ondemand.com/*"
],
"js": [
"script/main_script.js"
],
"world": "MAIN"
}
],
"web_accessible_resources": [
{
"matches": [
"https://*.hana.ondemand.com/*",
"https://*.platform.sapcloud.cn/*"
],
"resources": [
"script/*.js",
"images/*.woff"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}