JavaScript Breakpoint Collection
Find what code is responsible for page behavior.
JavaScript Breakpoint Collection là gì?
JavaScript Breakpoint Collection là một tiện ích mở rộng Chrome được phát triển bởi Matt Zeunert, và tính năng chính của nó là "Find what code is responsible for page behavior.".
Ả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 JavaScript Breakpoint Collection
Tải xuống các tệp mở rộng JavaScript Breakpoint Collection 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
For example, you can pause on page scroll, cookie access or when an alert box is shown. You can also break when a property on an arbitrary object changes. Instead of pausing you can also show a trace message.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JavaScript Breakpoint Collection |
ID | kgpjjblahlmjlfljfpcneapmeblichbp |
URL Chính Thức | https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp |
Mô tả | Find what code is responsible for page behavior. |
Kích Thước Tệp | 333 KB |
Số Lần Cài Đặt | 771 |
Phiên Bản Hiện Tại | 1.7.1 |
Cập Nhật Lần Cuối | 2018-11-08 |
Ngày Phát Hành | 2018-11-08 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Matt Zeunert |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mattzeunert/javascript-breakpoint-collection |
URL Trang Trợ Giúp | https://github.com/mattzeunert/javascript-breakpoint-collection/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JavaScript Breakpoint Collection", "manifest_version": 2, "version": "1.7.1", "description": "Find what code is responsible for page behavior.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "128": "icon.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "minimum_chrome_version": "10.0", "devtools_page": "devtools.html", "web_accessible_resources": [ "build\/javascript-breakpoint-collection.js" ] } |