Freeze DOM
Freeze the DOM instantly
Freeze DOM là gì?
Freeze DOM là một tiện ích mở rộng Chrome được phát triển bởi https://nemothecollector.dev, và tính năng chính của nó là "Freeze the DOM instantly".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Freeze DOM
Tải xuống các tệp mở rộng Freeze DOM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Freeze DOM |
ID | onekmnelbichmlnmkecckkjjljifhefg |
URL Chính Thức | https://chromewebstore.google.com/detail/freeze-dom/onekmnelbichmlnmkecckkjjljifhefg |
Mô tả | Freeze the DOM instantly |
Kích Thước Tệp | 34.97 KB |
Số Lần Cài Đặt | 498 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2024-01-30 |
Ngày Phát Hành | 2023-08-31 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://nemothecollector.dev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |