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.

Wat is SDI Auth Bridge for Adobe Launch?

SDI Auth Bridge for Adobe Launch is een Chrome-extensie ontwikkeld door Search Discovery, en de belangrijkste functie is "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SDI Auth Bridge for Adobe Launch

Download SDI Auth Bridge for Adobe Launch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
Officiële URL https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
Beschrijving Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
Bestandsgrootte 18.53 KB
Aantal Installaties 33
Huidige Versie 1.1.1
Laatst Bijgewerkt 2022-10-13
Publicatiedatum 2020-02-29
Ontwikkelaar Search Discovery
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.searchdiscovery.com/privacy-policy
Ondersteunde Talen 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"
        }
    ]
}