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" ] } |