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.

Qu'est-ce que SDI Auth Bridge for Adobe Launch ?

SDI Auth Bridge for Adobe Launch est une extension Chrome développée par Search Discovery, et sa fonction principale est "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SDI Auth Bridge for Adobe Launch

Téléchargez les fichiers d'extension SDI Auth Bridge for Adobe Launch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SDI Auth Bridge for Adobe Launch SDI Auth Bridge for Adobe Launch
ID ididonncggciliicjpkkpbnmmhjeohko
URL Officiel https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko
Description Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.
Taille du Fichier 18.53 KB
Nombre d'Installations 33
Version Actuelle 1.1.1
Dernière Mise à Jour 2022-10-13
Date de Publication 2020-02-29
Développeur Search Discovery
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.searchdiscovery.com/privacy-policy
Langues Prises en Charge 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"
        }
    ]
}