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.
Was ist SDI Auth Bridge for Adobe Launch?
SDI Auth Bridge for Adobe Launch ist eine Chrome-Erweiterung, die von Search Discovery entwickelt wurde, und ihr Hauptmerkmal ist "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".
Erweiterungsscreenshots
SDI Auth Bridge for Adobe Launch-Erweiterungs-CRX-Datei herunterladen
Laden Sie SDI Auth Bridge for Adobe Launch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | SDI Auth Bridge for Adobe Launch |
ID | ididonncggciliicjpkkpbnmmhjeohko |
Offizielle URL | https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko |
Beschreibung | Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user. |
Dateigröße | 18.53 KB |
Installationsanzahl | 33 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2022-10-13 |
Veröffentlichungsdatum | 2020-02-29 |
Entwickler | Search Discovery |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.searchdiscovery.com/privacy-policy |
Unterstützte Sprachen | 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" } ] } |