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.
O que é SDI Auth Bridge for Adobe Launch?
SDI Auth Bridge for Adobe Launch é uma extensão do Chrome desenvolvida por Search Discovery, e sua principal característica é "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SDI Auth Bridge for Adobe Launch
Baixe arquivos de extensão SDI Auth Bridge for Adobe Launch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | SDI Auth Bridge for Adobe Launch |
ID | ididonncggciliicjpkkpbnmmhjeohko |
URL Oficial | https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko |
Descrição | Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user. |
Tamanho do Arquivo | 18.53 KB |
Contagem de Instalações | 33 |
Versão Atual | 1.1.1 |
Última Atualização | 2022-10-13 |
Data de Publicação | 2020-02-29 |
Desenvolvedor | Search Discovery |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.searchdiscovery.com/privacy-policy |
Idiomas Suportados | 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" } ] } |