SDI Auth Bridge for Adobe Launch

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.

Merlin
Additional files are visible only to premium users

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"
    }
  ]
}