Deb.js
The tiniest debugger in the world
Hvad er Deb.js?
Deb.js er en Chrome-udvidelse udviklet af Krasimir Tsonev, og dens hovedfunktion er "The tiniest debugger in the world".
Udvidelsesskærmbilleder
Download Deb.js-udvidelses-CRX-fil
Download Deb.js-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
~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
Grundlæggende oplysninger om udvidelsen
Navn | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
Officiel URL | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Beskrivelse | The tiniest debugger in the world |
Filstørrelse | 12.91 KB |
Antal Installationer | 495 |
Nuværende Version | 0.0.5 |
Senest Opdateret | 2014-07-24 |
Udgivelsesdato | 2014-07-24 |
Bedømmelse | 4.00/5 Samlet 5 Bedømmelser |
Udvikler | Krasimir Tsonev |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/krasimir/deb.js |
Hjælpeside-URL | https://github.com/krasimir/deb.js/issues |
Understøttede Sprog | 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" ] } |