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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Salesforce และคุณลักษณะหลักของมันคือ "Provides support for launching either the Salesforce CDP Sitemap Editor or Interaction Studio Visual Editor on any domain."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Interactions SDK Launcher

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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:\/\/*\/*"
    ]
}