Time-Travel Debugger for The Web

Time-Travel Debugger for The Web

Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Time-Travel Debugger for The Web",
  "version": "1.2.2",
  "description": "Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.",
  "homepage_url": "https://codex.jbrew.co.uk",
  "permissions": [
    "https://codex.jbrew.co.uk/*",
    "https://codex-review.jbrew.co.uk/*",
    "https://codex.jbrew.dev/*",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://codex.jbrew.co.uk/*",
        "https://codex-review.jbrew.co.uk/*",
        "https://codex.jbrew.dev/*"
      ],
      "js": [
        "js/loader.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/recorder.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "browser_action.html",
    "default_icon": {
      "32": "images/icon_default_32.png",
      "128": "images/icon_default_128.png"
    },
    "theme_icons": [
      {
        "light": "images/icon_light_32.png",
        "dark": "images/icon_dark_32.png",
        "size": 32
      }
    ]
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}