Deb.js
The tiniest debugger in the world
Wat is Deb.js?
Deb.js is een Chrome-extensie ontwikkeld door Krasimir Tsonev, en de belangrijkste functie is "The tiniest debugger in the world".
Extensie Screenshots
Download het CRX-bestand van de extensie Deb.js
Download Deb.js-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
~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
Basisinformatie over de Extensie
Naam | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
Officiële URL | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Beschrijving | The tiniest debugger in the world |
Bestandsgrootte | 12.91 KB |
Aantal Installaties | 495 |
Huidige Versie | 0.0.5 |
Laatst Bijgewerkt | 2014-07-24 |
Publicatiedatum | 2014-07-24 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Krasimir Tsonev |
Betalingswijze | free |
Extensiewebsite | https://github.com/krasimir/deb.js |
Help Pagina-URL | https://github.com/krasimir/deb.js/issues |
Ondersteunde Talen | 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" ] } |