Debugger Shortcut
Stop javascript execution by pressing a keyboard shortcut.
Debugger Shortcut란 무엇입니까?
Debugger Shortcut은(는) http://vadim.sikora.name에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop javascript execution by pressing a keyboard shortcut."입니다.
Debugger Shortcut 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page. Works for iframes and nested iframes as well. Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/
확장 프로그램 기본 정보
이름 | |
ID | gjaeepjbfieiimehgjfpmaffegliiaea |
공식 URL | https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea |
설명 | Stop javascript execution by pressing a keyboard shortcut. |
파일 크기 | 8.93 KB |
설치 횟수 | 29 |
현재 버전 | 0.2.5 |
최근 업데이트 | 2017-06-24 |
출시 날짜 | 2017-06-24 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | http://vadim.sikora.name |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/vxsx/debugger-shortcut-extension |
도움말 페이지 URL | https://github.com/vxsx/debugger-shortcut-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Debugger Shortcut", "version": "0.2.5", "manifest_version": 2, "description": "Stop javascript execution by pressing a keyboard shortcut.", "homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon38.png", "default_title": "Options for Debugger Shortcut.", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |