Debugger Shortcut
Stop javascript execution by pressing a keyboard shortcut.
Qu'est-ce que Debugger Shortcut ?
Debugger Shortcut est une extension Chrome développée par http://vadim.sikora.name, et sa fonction principale est "Stop javascript execution by pressing a keyboard shortcut.".
Télécharger le fichier CRX de l'extension Debugger Shortcut
Téléchargez les fichiers d'extension Debugger Shortcut 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
Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page. Works for iframes and nested iframes as well. Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/
Informations de Base sur l'Extension
Nom | |
ID | gjaeepjbfieiimehgjfpmaffegliiaea |
URL Officiel | https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea |
Description | Stop javascript execution by pressing a keyboard shortcut. |
Taille du Fichier | 8.93 KB |
Nombre d'Installations | 29 |
Version Actuelle | 0.2.5 |
Dernière Mise à Jour | 2017-06-24 |
Date de Publication | 2017-06-24 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | http://vadim.sikora.name |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/vxsx/debugger-shortcut-extension |
URL de la Page d'Aide | https://github.com/vxsx/debugger-shortcut-extension/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Debugger Shortcut", "version": "0.2.5", "manifest_version": 2, "description": "Stop javascript execution by pressing a keyboard shortcut.", "homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon38.png", "default_title": "Options for Debugger Shortcut.", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |