Pause Debugger
Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.
Pause Debugger란 무엇입니까?
Pause Debugger은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long."입니다.
확장 프로그램 스크린샷
Pause Debugger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
So sometime one needs to inspect elements which don't stay around long or require the user to keep focus on them. Such as drop down menus and autocompletes. This extension allows you to pause the debugger with a timeout as well as a keyboard shortcut. Essentially replacing typing in the console things like setTimeout(function(){ debugger; }, 3000); It assumes that the Developer Tools are open already otherwise it won't work. Shortcut is Ctrl+Shift+Down (PC) or Command+Shift+Down (Mac). Source code is here: https://github.com/turigeza/freezepage-chrome
확장 프로그램 기본 정보
이름 | Pause Debugger |
ID | bepojlpejmdpcifcmekjapkaapenpncf |
공식 URL | https://chromewebstore.google.com/detail/pause-debugger/bepojlpejmdpcifcmekjapkaapenpncf |
설명 | Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long. |
파일 크기 | 14.23 KB |
설치 횟수 | 327 |
현재 버전 | 1.0 |
최근 업데이트 | 2019-10-13 |
출시 날짜 | 2019-10-09 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pause Debugger", "version": "1.0", "description": "Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.", "manifest_version": 2, "permissions": [ "tabs", "*:\/\/*\/*" ], "browser_action": { "default_popup": "popup.html", "default_title": "Pause Debugger", "default_icon": { "16": "images\/pause_circle_outline-16.png", "32": "images\/pause_circle_outline-32.png", "48": "images\/pause_circle_outline-48.png", "128": "images\/pause_circle_outline-128.png" } }, "commands": { "freeze-page": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Start debugger" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/pause_circle_outline-16.png", "32": "images\/pause_circle_outline-32.png", "48": "images\/pause_circle_outline-48.png", "128": "images\/pause_circle_outline-128.png" } } |