Freeze DOM
Freeze the DOM instantly
Freeze DOM란 무엇입니까?
Freeze DOM은(는) https://nemothecollector.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Freeze the DOM instantly"입니다.
확장 프로그램 스크린샷
Freeze DOM 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pause the DOM on demand for testing and debugging purpose. How to use: - Step 0: Open DevTools Panel (F12 or Right Click -> select 'Inspect') - Step 1: Right Click -> select 'Freeze DOM' or Press Cmd + Shift + S (on Mac) / Cmd + Shift + S (on Window, Ubuntu) Right click on tab content and choose "Freeze DOM" (while devtool panel is open) to freeze the state of website on demand. With a frozen DOM, you can: - Inspect an UI part that only available while hovered / focused (for example: keeping the auto complete dropdown of a text input visible) - Take a snapshot of an in-progress state (for example: loading state) 🔭 Explore more dev tools at: https://nemothecollector.dev/products Note: The shortcut might be overridden by built-in settings of some browsers for example Arc and Microsoft Edge. To fix it: - For Arc: go to arc://extensions/shortcuts and update the shortkeys - For Microsoft Edge: follow this instruction https://www.webnots.com/how-to-assign-keyboard-shortcut-to-extension-in-microsoft-edge/
확장 프로그램 기본 정보
이름 | Freeze DOM |
ID | onekmnelbichmlnmkecckkjjljifhefg |
공식 URL | https://chromewebstore.google.com/detail/freeze-dom/onekmnelbichmlnmkecckkjjljifhefg |
설명 | Freeze the DOM instantly |
파일 크기 | 34.97 KB |
설치 횟수 | 498 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2024-01-30 |
출시 날짜 | 2023-08-31 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://nemothecollector.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Freeze DOM", "version": "0.0.1", "description": "Freeze the DOM instantly", "manifest_version": 3, "permissions": [ "contextMenus", "scripting", "activeTab" ], "commands": { "freeze-dom": { "suggested_key": "Ctrl+Shift+S", "description": "Freeze the DOM instantly" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" } } |