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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SDI Auth Bridge for Adobe Launch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | SDI Auth Bridge for Adobe Launch |
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 |
ईमेल | [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" } ] } |