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是由Search Discovery開發的Chrome擴展程式,該擴展的主要功能是“Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.”。

擴展截圖

screenshot

下載SDI Auth Bridge for Adobe Launch擴展crx文件

下載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
官方網址 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"
        }
    ]
}