Salesforce Interactions SDK Launcher

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

Salesforce Interactions SDK Launcherとは何ですか?

Salesforce Interactions SDK LauncherはSalesforceによって開発されたChromeの拡張機能で、その主な機能は「Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Salesforce Interactions SDK Launcher拡張機能のCRXファイルをダウンロード

Salesforce Interactions SDK Launcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Salesforce Interactions SDK Launcher Salesforce Interactions SDK Launcher
ID mhmpepeohaddbhkhecaldflljggicedf
公式URL https://chromewebstore.google.com/detail/salesforce-interactions-s/mhmpepeohaddbhkhecaldflljggicedf
説明 Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain.
ファイルサイズ 4.17 MB
インストール数 8,508
現在のバージョン 5.0.1
最終更新日 2023-01-23
公開日 2021-10-15
評価 4.75/5 合計 4 レビュー
開発者 Salesforce
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL http://www.salesforce.com/company/privacy
対応言語 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:\/\/*\/*"
    ]
}