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
官方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"
        }
    ]
}