SFMC Companion

This Extension is designed to support navigation and discovery in Marketing Cloud by creating connections between objects.

SFMC Companionคืออะไร?

SFMC Companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cameron Robert และคุณลักษณะหลักของมันคือ "This Extension is designed to support navigation and discovery in Marketing Cloud by creating connections between objects."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SFMC Companion

ดาวน์โหลดไฟล์ส่วนขยาย SFMC Companion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Salesforce Marketing Cloud Companion Tool.
** In Active Development - Please report any bugs via the Options -> Feedback/Bugs form **

This tool allows you to quickly navigate through your Marketing Cloud objects (such as Automations, Queries, Data Extensions and more) to find where they are saved, what activities are using them, and what other objects they interact with.

For example:
By clicking on a Data Extension - you can see what Queries target that Data Extension, and what Queries reference that Data Extensions in their code!
By clicking on a Query - you can see a list of all the Data Extensions referenced in the Query, and the details of the target data extension; as well as all of the Automations that are using that Query!
By clicking on an Automation - you can see all of the activities exactly as you would in Automation Studio, and you can navigate to each of those activities to see their details.

At any time, you can click on the Blue Link box to be taken directly to that activity in Marketing Cloud!

The built-in Search function allows you to search every object by name so you can quickly find what you are looking for.

Object reporting gives users the ability to export detailed inventories of objects in their Marketing Cloud instance.

This extension is limited by the Marketing Cloud user's roles and permissions. Users will only be able to load and navigate objects that they have permission to access in Marketing Cloud.


** Extension is in Alpha Release Stage and is provided "as-is", with no warranty or guarantee **
** This extension not an official product of Salesforce,
and is not representative, endorsed or supported by Salesforce in any way **                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SFMC Companion SFMC Companion
ID kllkonffdjfimimaellfmgnakhlbeicg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sfmc-companion/kllkonffdjfimimaellfmgnakhlbeicg
คำอธิบาย This Extension is designed to support navigation and discovery in Marketing Cloud by creating connections between objects.
ขนาดไฟล์ 459 KB
จำนวนการติดตั้ง 3,112
เวอร์ชันปัจจุบัน 0.4.2
อัปเดตครั้งล่าสุด 2023-12-31
วันที่เผยแพร่ 2022-07-25
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Cameron Robert
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
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"
}