Adobe Express

Adobe Express

An all-in-one content creation app that makes it fast, easy and fun to design and share social media posts, video, images, and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0.2",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "assets/ax_appicon_16.png",
    "24": "assets/ax_appicon_32.png",
    "60": "assets/ax_appicon_48.png",
    "128": "assets/ax_appicon_128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "popup.html",
        "errorPopup.html",
        "errorPopup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}