Deb.js
The tiniest debugger in the world
Qu'est-ce que Deb.js ?
Deb.js est une extension Chrome développée par Krasimir Tsonev, et sa fonction principale est "The tiniest debugger in the world".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Deb.js
Téléchargez les fichiers d'extension Deb.js 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
~2K minimalistic JavaScript library for debugging in the browser. Install the extension and add "debjs" somewhere in the URL. Thats it! Now you are able to add ".deb" or ".debc" to your function definitions. For example: var calculateSomething = function(cb) { // ... }.deb(); The official repository of the project is available here https://github.com/krasimir/deb.js
Informations de Base sur l'Extension
Nom | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
URL Officiel | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Description | The tiniest debugger in the world |
Taille du Fichier | 12.91 KB |
Nombre d'Installations | 495 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2014-07-24 |
Date de Publication | 2014-07-24 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | Krasimir Tsonev |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/krasimir/deb.js |
URL de la Page d'Aide | https://github.com/krasimir/deb.js/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deb.js", "description": "The tiniest debugger in the world", "version": "0.0.5", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Deb.js" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "js\/deb.min.js" ] } |