Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
Immutable.js Object Formatterคืออะไร?
Immutable.js Object Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Zeunert และคุณลักษณะหลักของมันคือ "Makes Immutable JS objects more readable when they are logged to the console."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Immutable.js Object Formatter
ดาวน์โหลดไฟล์ส่วนขยาย Immutable.js Object Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Transforms logged Immutable JS objects into a more readable format. To use the extension you need to "Enable Custom Formatters" in the Chrome DevTools settings. Based on Immutable DevTools: https://github.com/andrewdavey/immutable-devtools Source Code: https://github.com/mattzeunert/immutable-object-formatter-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Immutable.js Object Formatter |
ID | hgldghadipiblonfkkicmgcbbijnpeog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog |
คำอธิบาย | Makes Immutable JS objects more readable when they are logged to the console. |
ขนาดไฟล์ | 43.46 KB |
จำนวนการติดตั้ง | 7,573 |
เวอร์ชันปัจจุบัน | 1.9.3 |
อัปเดตครั้งล่าสุด | 2020-04-20 |
วันที่เผยแพร่ | 2020-04-15 |
คะแนน | 4.91/5 รวมทั้งหมด 33 คะแนน |
ผู้พัฒนา | Matt Zeunert |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/mattzeunert/immutable-object-formatter-extension |
URL หน้าช่วยเหลือ | https://github.com/mattzeunert/immutable-object-formatter-extension/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immutable.js Object Formatter", "short_name": "Immutable.js Object Formatter", "description": "Makes Immutable JS objects more readable when they are logged to the console.", "version": "1.9.3", "manifest_version": 2, "minimum_chrome_version": "48.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_start" } ], "devtools_page": "devtool.html", "permissions": [ "http:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ "bundle.js" ] } |