Deb.js
The tiniest debugger in the world
Was ist Deb.js?
Deb.js ist eine Chrome-Erweiterung, die von Krasimir Tsonev entwickelt wurde, und ihr Hauptmerkmal ist "The tiniest debugger in the world".
Erweiterungsscreenshots
Deb.js-Erweiterungs-CRX-Datei herunterladen
Laden Sie Deb.js-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
~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
Grundlegende Informationen zur Erweiterung
Name | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
Offizielle URL | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Beschreibung | The tiniest debugger in the world |
Dateigröße | 12.91 KB |
Installationsanzahl | 495 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2014-07-24 |
Veröffentlichungsdatum | 2014-07-24 |
Bewertung | 4.00/5 Insgesamt 5 Bewertungen |
Entwickler | Krasimir Tsonev |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/krasimir/deb.js |
Hilfeseite URL | https://github.com/krasimir/deb.js/issues |
Unterstützte Sprachen | 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" ] } |