Salesforce Interactions SDK Launcher

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

Cos'è Salesforce Interactions SDK Launcher?

Salesforce Interactions SDK Launcher è un'estensione di Chrome sviluppata da Salesforce, e la sua funzione principale è "Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Salesforce Interactions SDK Launcher

Scarica i file di estensione Salesforce Interactions SDK Launcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Salesforce Interactions SDK Launcher Salesforce Interactions SDK Launcher
ID mhmpepeohaddbhkhecaldflljggicedf
URL Ufficiale https://chromewebstore.google.com/detail/salesforce-interactions-s/mhmpepeohaddbhkhecaldflljggicedf
Descrizione Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.
Dimensione del File 4.17 MB
Conteggio Installazioni 8,508
Versione Corrente 5.0.1
Ultimo Aggiornamento 2023-01-23
Data di Pubblicazione 2021-10-15
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore Salesforce
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://www.salesforce.com/company/privacy
Lingue Supportate 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:\/\/*\/*"
    ]
}