postMessage debugger
This extension prints messages sent with postMessage to the console
postMessage debuggerคืออะไร?
postMessage debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wille.eklund และคุณลักษณะหลักของมันคือ "This extension prints messages sent with postMessage to the console"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย postMessage debugger
ดาวน์โหลดไฟล์ส่วนขยาย postMessage debugger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This chrome extension prints messages sent with postMessage to the console for debugging.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | postMessage debugger |
ID | ibnkhbkkelpcgofjlfnlanbigclpldad |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad |
คำอธิบาย | This extension prints messages sent with postMessage to the console |
ขนาดไฟล์ | 3.61 KB |
จำนวนการติดตั้ง | 4,982 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2018-11-28 |
วันที่เผยแพร่ | 2018-11-23 |
คะแนน | 4.58/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | wille.eklund |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "postMessage debugger", "description": "This extension prints messages sent with postMessage to the console", "version": "0.2.0", "browser_action": { "name": "Debug postMessages" }, "content_scripts": [ { "js": [ "js\/postMessage-debugger.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true } ] } |