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 là gì?
Pause Debugger là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "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.".
Ả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 Pause Debugger
Tải xuống các tệp mở rộng Pause Debugger 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pause Debugger |
ID | bepojlpejmdpcifcmekjapkaapenpncf |
URL Chính Thức | https://chromewebstore.google.com/detail/pause-debugger/bepojlpejmdpcifcmekjapkaapenpncf |
Mô tả | 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. |
Kích Thước Tệp | 14.23 KB |
Số Lần Cài Đặt | 327 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-10-13 |
Ngày Phát Hành | 2019-10-09 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |