JavaScript Breakpoint Collection
Find what code is responsible for page behavior.
Qu'est-ce que JavaScript Breakpoint Collection ?
JavaScript Breakpoint Collection est une extension Chrome développée par Matt Zeunert, et sa fonction principale est "Find what code is responsible for page behavior.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JavaScript Breakpoint Collection
Téléchargez les fichiers d'extension JavaScript Breakpoint Collection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | JavaScript Breakpoint Collection |
ID | kgpjjblahlmjlfljfpcneapmeblichbp |
URL Officiel | https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp |
Description | Find what code is responsible for page behavior. |
Taille du Fichier | 333 KB |
Nombre d'Installations | 771 |
Version Actuelle | 1.7.1 |
Dernière Mise à Jour | 2018-11-08 |
Date de Publication | 2018-11-08 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Matt Zeunert |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mattzeunert/javascript-breakpoint-collection |
URL de la Page d'Aide | https://github.com/mattzeunert/javascript-breakpoint-collection/issues |
Langues Prises en Charge | 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" ] } |