Celonis Task Mining Browser Extension

Celonis Task Mining Browser Extension

This extension extends the Celonis Task Mining to capture front-end events from the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Celonis Task Mining Browser Extension",
  "description": "This extension extends the Celonis Task Mining to capture front-end events from the browser",
  "version": "1.0.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content-scripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "background": {
    "service_worker": "background-scripts.js"
  },
  "action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html",
    "default_title": "Celonis Task Mining Browser Extension"
  },
  "content_security_policy": {}
}