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.

Co to jest SDI Auth Bridge for Adobe Launch?

SDI Auth Bridge for Adobe Launch to rozszerzenie Chrome opracowane przez Search Discovery, a jego główną funkcją jest „Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SDI Auth Bridge for Adobe Launch

Pobierz pliki rozszerzeń SDI Auth Bridge for Adobe Launch w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
Oficjalny URL https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
Opis Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
Rozmiar pliku 18.53 KB
Liczba instalacji 33
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2022-10-13
Data Publikacji 2020-02-29
Deweloper Search Discovery
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.searchdiscovery.com/privacy-policy
Obsługiwane Języki 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"
        }
    ]
}