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.

Hvad er SDI Auth Bridge for Adobe Launch?

SDI Auth Bridge for Adobe Launch er en Chrome-udvidelse udviklet af Search Discovery, og dens hovedfunktion er "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".

Udvidelsesskærmbilleder

screenshot

Download SDI Auth Bridge for Adobe Launch-udvidelses-CRX-fil

Download SDI Auth Bridge for Adobe Launch-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
Officiel URL https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
Beskrivelse Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
Filstørrelse 18.53 KB
Antal Installationer 33
Nuværende Version 1.1.1
Senest Opdateret 2022-10-13
Udgivelsesdato 2020-02-29
Udvikler Search Discovery
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.searchdiscovery.com/privacy-policy
Understøttede Sprog 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"
        }
    ]
}