SDI Auth Bridge for Adobe Launch

Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.

SDI Auth Bridge for Adobe Launchคืออะไร?

SDI Auth Bridge for Adobe Launch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Search Discovery และคุณลักษณะหลักของมันคือ "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SDI Auth Bridge for Adobe Launch

ดาวน์โหลดไฟล์ส่วนขยาย SDI Auth Bridge for Adobe Launch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The sole purpose of this extension is to enable Adobe Launch Extension views to make calls to the Adobe IO API on behalf of the user.
It is a necessary companion to any Search Discovery Adobe Launch Extension that needs to access the Adobe IO API.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
คำอธิบาย Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
ขนาดไฟล์ 18.53 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2022-10-13
วันที่เผยแพร่ 2020-02-29
ผู้พัฒนา Search Discovery
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.searchdiscovery.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SDI Auth Bridge for Adobe Launch",
    "short_name": "SDIAuthBridge",
    "version": "1.1.1",
    "description": "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/experience.adobe.com\/*"
            ],
            "js": [
                "launchParentWindow.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/assets.adobedtm.com\/*extensions\/*",
                "http:\/\/localhost:3000\/extensionViews\/*.html.*",
                "https:\/\/localhost:4000\/extensionViews\/*.html.*"
            ],
            "js": [
                "launchExtensionConfig.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}