Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
Pause page란 무엇입니까?
Pause page은(는) oliverjash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly pause the page when DevTools is open using a keyboard shortcut."입니다.
확장 프로그램 스크린샷
Pause page 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Instantly pause the page when DevTools is open using a keyboard shortcut. This makes it easy to inspect an element at a specific point in time. For example, for elements like popovers or dropdowns, visibility is often controlled using JavaScript events like `mousemove`/`mouseleave`, so when we try to inspect these elements, they disappear from the page because the cursor moved or keyboard focus changed. If we pause the page once the element is visible then it won't disappear when we move the cursor or change keyboard focus, thereby allowing us to inspect the element and its styles.
확장 프로그램 기본 정보
이름 | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
공식 URL | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
설명 | Instantly pause the page when DevTools is open using a keyboard shortcut. |
파일 크기 | 5.95 KB |
설치 횟수 | 428 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-11-23 |
출시 날짜 | 2021-11-23 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | oliverjash |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/OliverJAsh/chrome-extension-pause-page |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pause page", "description": "Instantly pause the page when DevTools is open using a keyboard shortcut.", "permissions": [ "activeTab" ], "manifest_version": 2, "version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "pause": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Pause" } }, "icons": { "128": "icon.png" } } |