Salesforce Interactions SDK Launcher

Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.

Co je Salesforce Interactions SDK Launcher?

Salesforce Interactions SDK Launcher je rozšíření Chrome vyvinuté Salesforce, a jeho hlavní funkcí je „Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Salesforce Interactions SDK Launcher

Stáhněte si soubory rozšíření Salesforce Interactions SDK Launcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.                    

Základní Informace o Rozšíření

Název Salesforce Interactions SDK Launcher Salesforce Interactions SDK Launcher
ID mhmpepeohaddbhkhecaldflljggicedf
Oficiální URL https://chromewebstore.google.com/detail/salesforce-interactions-s/mhmpepeohaddbhkhecaldflljggicedf
Popis Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.
Velikost souboru 4.17 MB
Počet instalací 8,508
Aktuální Verze 5.0.1
Poslední Aktualizace 2023-01-23
Datum Vydání 2021-10-15
Hodnocení 4.75/5 Celkem 4 Hodnocení
Vývojář Salesforce
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí http://www.salesforce.com/company/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Interactions SDK Launcher",
    "manifest_version": 3,
    "version": "5.0.1",
    "description": "Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.",
    "permissions": [
        "tabs",
        "webRequest",
        "privacy",
        "storage",
        "scripting",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback"
    ],
    "icons": {
        "16": "static\/sf-logo-38x38.png",
        "48": "static\/sf-logo-48x48.png",
        "128": "static\/sf-logo-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pageContext.js",
                "debugger.html",
                "static\/*.svg"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "19": "static\/sf-logo-38x38.png",
            "38": "static\/sf-logo-48x48.png",
            "128": "static\/sf-logo-128x128.png"
        },
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}