Miruni Capture

Miruni Capture

Capture and resolve issues in your web application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "93",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "action": {
    "default_title": "__MSG_ext_default_title__"
  },
  "description": "__MSG_extDesc__",
  "version": "1.0.65",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*.woff",
        "assets/fonts/*.woff2",
        "html/camera.html",
        "html/authorize.html",
        "html/recording_tab.html",
        "content.css",
        "authorize.bundle.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "debugger",
    "desktopCapture",
    "storage",
    "tabs",
    "tabCapture",
    "webRequest",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; font-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://*.miruni.io/*",
      "http://localhost:4200/*"
    ]
  }
}