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.

Vad är SDI Auth Bridge for Adobe Launch?

SDI Auth Bridge for Adobe Launch är en Chrome-tillägg utvecklad av Search Discovery, och dess huvudfunktion är "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".

Tilläggsskärmbilder

screenshot

Ladda ner SDI Auth Bridge for Adobe Launch-förlängningens CRX-fil

Ladda ner SDI Auth Bridge for Adobe Launch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
Officiell webbadress https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
Beskrivning Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
Filstorlek 18.53 KB
Antal Installationer 33
Aktuell Version 1.1.1
Senast Uppdaterad 2022-10-13
Publiceringsdatum 2020-02-29
Utvecklare Search Discovery
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.searchdiscovery.com/privacy-policy
Stödda Språk 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"
        }
    ]
}