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 هو إضافة Chrome تم تطويرها بواسطة Search Discovery، والميزة الرئيسية لها هي "Enables Adobe Launch Extension views to make Adobe IO API calls using the credentials of the currently logged in user.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SDI Auth Bridge for Adobe Launch

قم بتنزيل ملفات الامتداد SDI Auth Bridge for Adobe Launch بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}