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.
Cos'è SDI Auth Bridge for Adobe Launch?
SDI Auth Bridge for Adobe Launch è un'estensione di Chrome sviluppata da Search Discovery, e la sua funzione principale è "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SDI Auth Bridge for Adobe Launch
Scarica i file di estensione SDI Auth Bridge for Adobe Launch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | SDI Auth Bridge for Adobe Launch |
ID | ididonncggciliicjpkkpbnmmhjeohko |
URL Ufficiale | https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko |
Descrizione | Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user. |
Dimensione del File | 18.53 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2022-10-13 |
Data di Pubblicazione | 2020-02-29 |
Sviluppatore | Search Discovery |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.searchdiscovery.com/privacy-policy |
Lingue Supportate | 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" } ] } |