Monito

Monito

See network requests, user interaction events, navigation, and console logs. Easily export all the logs in a single archive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Monito",
  "version": "2.0.0",
  "description": "See network requests, user interaction events, navigation, and console logs. Easily export all the logs in a single archive.",
  "icons": {
    "16": "icons/favicon-16.png",
    "48": "icons/favicon-48.png",
    "128": "icons/favicon-128.png"
  },
  "browser_action": {
    "default_title": "Open Monito",
    "default_icon": {
      "16": "icons/favicon-16.png",
      "48": "icons/favicon-48.png",
      "128": "icons/favicon-128.png"
    }
  },
  "background": {
    "scripts": [
      "background/src/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Open Monito for the current tab"
    }
  },
  "minimum_chrome_version": "87",
  "permissions": [
    "<all_urls>",
    "debugger",
    "activeTab",
    "webNavigation",
    "storage",
    "desktopCapture"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdn.usefathom.com/script.js; object-src 'self';",
  "web_accessible_resources": [
    "content/src/overrides/consoleOverride.js",
    "content/src/overrides/deviceData.js"
  ]
}