Celonis Sandbox

Celonis Sandbox

A faster way to access any component's content in Contentful via editor links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": " Celonis Sandbox",
  "description": "A faster way to access any component's content in Contentful via editor links.",
  "version": "0.4.1",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "images/celonis16x16.png",
      "32": "images/celonis32x32.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "celonisExtension.js"
      ]
    }
  ],
  "icons": {
    "16": "images/celonis16x16.png",
    "32": "images/celonis32x32.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "MacCtrl+Shift+E"
      },
      "description": "Execute celonisExtension.js"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ]
}