Time-Travel Debugger for The Web

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

Time-Travel Debugger for The Web क्या है?

Time-Travel Debugger for The Web Codex, by jbrew द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Time-Travel Debugger for The Web एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Time-Travel Debugger for The Web Time-Travel Debugger for The Web
ID kmakeljcpchnojdlkdkefhjkakadccoh
आधिकारिक URL https://chromewebstore.google.com/detail/time-travel-debugger-for/kmakeljcpchnojdlkdkefhjkakadccoh
विवरण Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.
फ़ाइल का आकार 197 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.2.2
अंतिम अपडेट 2021-05-13
प्रकाशन तिथि 2020-12-05
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Codex, by jbrew
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://codex.jbrew.co.uk/extension
गोपनीयता नीति पृष्ठ URL https://codex.jbrew.co.uk/privacy
समर्थित भाषाएँ 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
}