Time-Travel Debugger for The Web

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

Was ist Time-Travel Debugger for The Web?

Time-Travel Debugger for The Web ist eine Chrome-Erweiterung, die von Codex, by jbrew entwickelt wurde, und ihr Hauptmerkmal ist "Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.".

Erweiterungsscreenshots

screenshot

Time-Travel Debugger for The Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Time-Travel Debugger for The Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Time-Travel Debugger for The Web Time-Travel Debugger for The Web
ID kmakeljcpchnojdlkdkefhjkakadccoh
Offizielle URL https://chromewebstore.google.com/detail/time-travel-debugger-for/kmakeljcpchnojdlkdkefhjkakadccoh
Beschreibung Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.
Dateigröße 197 KB
Installationsanzahl 22
Aktuelle Version 1.2.2
Letztes Update 2021-05-13
Veröffentlichungsdatum 2020-12-05
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Codex, by jbrew
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://codex.jbrew.co.uk/extension
URL der Datenschutzrichtlinien-Seite https://codex.jbrew.co.uk/privacy
Unterstützte Sprachen 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
}