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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}