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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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