JavaScript Breakpoint Collection
Find what code is responsible for page behavior.
What is JavaScript Breakpoint Collection?
JavaScript Breakpoint Collection is a Chrome extension developed by Matt Zeunert, and its main feature is "Find what code is responsible for page behavior.".
Extension Screenshots
Download JavaScript Breakpoint Collection Extension CRX File
Download JavaScript Breakpoint Collection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | JavaScript Breakpoint Collection |
ID | kgpjjblahlmjlfljfpcneapmeblichbp |
Official URL | https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp |
Description | Find what code is responsible for page behavior. |
File Size | 333 KB |
Installation Count | 771 |
Current Version | 1.7.1 |
Last Updated | 2018-11-08 |
Publish Date | 2018-11-08 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Matt Zeunert |
Payment Type | free |
Extension Website | https://github.com/mattzeunert/javascript-breakpoint-collection |
Help Page URL | https://github.com/mattzeunert/javascript-breakpoint-collection/issues |
Supported Languages | 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" ] } |