Deb.js
The tiniest debugger in the world
Apa itu Deb.js?
Deb.js adalah ekstensi Chrome yang dikembangkan oleh Krasimir Tsonev, dan fitur utamanya adalah "The tiniest debugger in the world".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Deb.js
Unduh file ekstensi Deb.js dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
~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
Informasi Dasar Ekstensi
Nama | Deb.js |
ID | egmeoknjmgikkkcdicmajkbkmkcmbiah |
URL Resmi | https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah |
Deskripsi | The tiniest debugger in the world |
Ukuran File | 12.91 KB |
Jumlah Instalasi | 495 |
Versi Saat Ini | 0.0.5 |
Terakhir Diperbarui | 2014-07-24 |
Tanggal Publikasi | 2014-07-24 |
Penilaian | 4.00/5 Total 5 Penilaian |
Pengembang | Krasimir Tsonev |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/krasimir/deb.js |
URL Halaman Bantuan | https://github.com/krasimir/deb.js/issues |
Bahasa yang Didukung | 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" ] } |