JavaScript Breakpoint Collection
Find what code is responsible for page behavior.
Wat is JavaScript Breakpoint Collection?
JavaScript Breakpoint Collection is een Chrome-extensie ontwikkeld door Matt Zeunert, en de belangrijkste functie is "Find what code is responsible for page behavior.".
Extensie Screenshots
Download het CRX-bestand van de extensie JavaScript Breakpoint Collection
Download JavaScript Breakpoint Collection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | JavaScript Breakpoint Collection |
ID | kgpjjblahlmjlfljfpcneapmeblichbp |
Officiële URL | https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp |
Beschrijving | Find what code is responsible for page behavior. |
Bestandsgrootte | 333 KB |
Aantal Installaties | 771 |
Huidige Versie | 1.7.1 |
Laatst Bijgewerkt | 2018-11-08 |
Publicatiedatum | 2018-11-08 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Matt Zeunert |
Betalingswijze | free |
Extensiewebsite | https://github.com/mattzeunert/javascript-breakpoint-collection |
Help Pagina-URL | https://github.com/mattzeunert/javascript-breakpoint-collection/issues |
Ondersteunde Talen | 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" ] } |