Time-Travel Debugger for The Web

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

¿Qué es Time-Travel Debugger for The Web?

Time-Travel Debugger for The Web es una extensión de Chrome desarrollada por Codex, by jbrew, y su función principal es "Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Time-Travel Debugger for The Web

Descarga archivos de extensión Time-Travel Debugger for The Web en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Debugging your web apps is hard. How many times have you asked someone testing your software what browser they were using? Exactly what URL they were on? Exactly what they typed, where they clicked, what they saw?

The Codex Recorder extension exists to make that all go away.

With a simple "record" button, you can track all the information about a browser session that you need to debug your app. Use it to generate a shareable link, with an event history that is easy to step through, details for each event, and an inspectable playback window.                    

Información Básica de la Extensión

Nombre Time-Travel Debugger for The Web Time-Travel Debugger for The Web
ID kmakeljcpchnojdlkdkefhjkakadccoh
URL Oficial https://chromewebstore.google.com/detail/time-travel-debugger-for/kmakeljcpchnojdlkdkefhjkakadccoh
Descripción Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.
Tamaño del Archivo 197 KB
Cantidad de Instalaciones 22
Versión Actual 1.2.2
Última Actualización 2021-05-13
Fecha de Publicación 2020-12-05
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Codex, by jbrew
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://codex.jbrew.co.uk/extension
URL de la Página de Política de Privacidad https://codex.jbrew.co.uk/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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": [
                ""
            ],
            "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
}