Time-Travel Debugger for The Web

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

Qu'est-ce que Time-Travel Debugger for The Web ?

Time-Travel Debugger for The Web est une extension Chrome développée par Codex, by jbrew, et sa fonction principale est "Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Time-Travel Debugger for The Web

Téléchargez les fichiers d'extension Time-Travel Debugger for The Web au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Time-Travel Debugger for The Web Time-Travel Debugger for The Web
ID kmakeljcpchnojdlkdkefhjkakadccoh
URL Officiel https://chromewebstore.google.com/detail/time-travel-debugger-for/kmakeljcpchnojdlkdkefhjkakadccoh
Description Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.
Taille du Fichier 197 KB
Nombre d'Installations 22
Version Actuelle 1.2.2
Dernière Mise à Jour 2021-05-13
Date de Publication 2020-12-05
Évaluation 3.00/5 Total 2 Évaluations
Développeur Codex, by jbrew
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://codex.jbrew.co.uk/extension
URL de la Page de Politique de Confidentialité https://codex.jbrew.co.uk/privacy
Langues Prises en Charge 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
}