Inspect and view changes in Browser Redirection 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
{
"action": {
"default_icon": "citrix_icon_inactive.png"
},
"background": {
"service_worker": "background-ImportScripts.js"
},
"content_scripts": [
{
"js": [
"content-PageToServiceWorkerMessageProxy.js",
"content-InjectedScriptConfigurator.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"js": [
"content-VideoSuppressor.js"
],
"matches": [
"*://*/*bcrFallback=bcrFallback*"
],
"run_at": "document_start"
}
],
"description": "This extension redirects Webpages.",
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "citrix_icon16.png",
"48": "citrix_icon48.png",
"128": "citrix_icon.png"
},
"manifest_version": 3,
"name": "Browser Redirection Extension",
"options_ui": {
"page": "options.html"
},
"permissions": [
"declarativeNetRequest",
"activeTab",
"webNavigation",
"storage",
"tabs",
"nativeMessaging",
"webRequest",
"system.display"
],
"version": "24.12.4",
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"bcr.html",
"HdxVideoBootstrapper.js",
"CitrixBcrApi.js",
"CitrixVideoSuppressor.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}