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.
SDI Auth Bridge for Adobe Launchとは何ですか?
SDI Auth Bridge for Adobe LaunchはSearch Discoveryによって開発されたChromeの拡張機能で、その主な機能は「Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.」です。
拡張機能のスクリーンショット
SDI Auth Bridge for Adobe Launch拡張機能のCRXファイルをダウンロード
SDI Auth Bridge for Adobe Launch拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | ididonncggciliicjpkkpbnmmhjeohko |
公式URL | https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko |
説明 | Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user. |
ファイルサイズ | 18.53 KB |
インストール数 | 33 |
現在のバージョン | 1.1.1 |
最終更新日 | 2022-10-13 |
公開日 | 2020-02-29 |
開発者 | Search Discovery |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://www.searchdiscovery.com/privacy-policy |
対応言語 | 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" } ] } |