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 là gì?
SDI Auth Bridge for Adobe Launch là một tiện ích mở rộng Chrome được phát triển bởi Search Discovery, và tính năng chính của nó là "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SDI Auth Bridge for Adobe Launch
Tải xuống các tệp mở rộng SDI Auth Bridge for Adobe Launch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SDI Auth Bridge for Adobe Launch |
ID | ididonncggciliicjpkkpbnmmhjeohko |
URL Chính Thức | https://chromewebstore.google.com/detail/sdi-auth-bridge-for-adobe/ididonncggciliicjpkkpbnmmhjeohko |
Mô tả | Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user. |
Kích Thước Tệp | 18.53 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2022-10-13 |
Ngày Phát Hành | 2020-02-29 |
Nhà Phát Triển | Search Discovery |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.searchdiscovery.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |