Salesforce Interactions SDK Launcher

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

O que é Salesforce Interactions SDK Launcher?

Salesforce Interactions SDK Launcher é uma extensão do Chrome desenvolvida por Salesforce, e sua principal característica é "Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Salesforce Interactions SDK Launcher

Baixe arquivos de extensão Salesforce Interactions SDK Launcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Salesforce Interactions SDK Launcher Salesforce Interactions SDK Launcher
ID mhmpepeohaddbhkhecaldflljggicedf
URL Oficial https://chromewebstore.google.com/detail/salesforce-interactions-s/mhmpepeohaddbhkhecaldflljggicedf
Descrição Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.
Tamanho do Arquivo 4.17 MB
Contagem de Instalações 8,508
Versão Atual 5.0.1
Última Atualização 2023-01-23
Data de Publicação 2021-10-15
Classificação 4.75/5 Total de 4 Avaliações
Desenvolvedor Salesforce
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://www.salesforce.com/company/privacy
Idiomas Suportados 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:\/\/*\/*"
    ]
}