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によって開発されたChromeの拡張機能で、その主な機能は「Record, Share & Replay the Web. Step through events, inspect the HTML and debug with confidence.」です。

拡張機能のスクリーンショット

screenshot

Time-Travel Debugger for The Web拡張機能のCRXファイルをダウンロード

Time-Travel Debugger for The Web拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}