WebMon
Monitor variables exported from JavaScript
WebMonคืออะไร?
WebMon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christian Plesner Hansen และคุณลักษณะหลักของมันคือ "Monitor variables exported from JavaScript"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebMon
ดาวน์โหลดไฟล์ส่วนขยาย WebMon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
WebMon provides an easy way to monitor running web apps. JavaScript code can export information using the webmon.js library and this chrome extension will read the exported values and display them in a popup. Get the webmon library from http://github.com/plesner/webmon.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | edecgbjfjpedgppbmhedaoiffklffnal |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal |
คำอธิบาย | Monitor variables exported from JavaScript |
ขนาดไฟล์ | 15.29 KB |
จำนวนการติดตั้ง | 32 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2012-07-28 |
วันที่เผยแพร่ | 2012-07-28 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Christian Plesner Hansen |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/plesner/webmon |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebMon", "version": "0.1", "description": "Monitor variables exported from JavaScript", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |