Inspect and view changes in SFMC Companion 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "SFMC Companion",
"author": "Cameron Robert",
"description": "This Extension is designed to support navigation and discovery in Marketing Cloud by creating connections between objects.",
"version": "0.4.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module",
"background.service_worker": true
},
"permissions": [
"storage",
"activeTab",
"unlimitedStorage",
"sidePanel"
],
"host_permissions": [
"https://*.exacttarget.com/",
"https://*.marketingcloudapps.com/*",
"https://*.exacttargetapis.com/*",
"https://*.marketingcloudapis.com/*"
],
"content_scripts": [
{
"matches": [
"https://*.marketingcloudapps.com/*"
],
"exclude_matches": [
"https://*.marketingcloudapps.com/AutomationStudioFuel3/login?hub=1*"
],
"all_frames": true,
"js": [
"marketingcloudapps.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"https://*.marketingcloudapps.com/*"
],
"use_dynamic_url": true
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"64": "/images/icon64.png",
"128": "/images/icon128.png"
}
},
"icons": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"64": "/images/icon64.png",
"128": "/images/icon128.png"
},
"options_page": "options.html"
}