Deb.js
The tiniest debugger in the world
Τι είναι το Deb.js;
Το Deb.js είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Krasimir Tsonev, και η κύρια λειτουργία του είναι "The tiniest debugger in the world".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Deb.js
Λήψη αρχείων επέκτασης Deb.js σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
~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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
Επίσημο URL | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Περιγραφή | The tiniest debugger in the world |
Μέγεθος Αρχείου | 12.91 KB |
Αριθμός Εγκαταστάσεων | 495 |
Τρέχουσα Έκδοση | 0.0.5 |
Τελευταία Ενημέρωση | 2014-07-24 |
Ημερομηνία Δημοσίευσης | 2014-07-24 |
Αξιολόγηση | 4.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Krasimir Tsonev |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/krasimir/deb.js |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/krasimir/deb.js/issues |
Υποστηριζόμενες Γλώσσες | 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" ] } |