Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Seven JSON Viewerคืออะไร?
Seven JSON Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://reez.dev และคุณลักษณะหลักของมันคือ "Minimal JSON Viewer with JSON Path"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Seven JSON Viewer
ดาวน์โหลดไฟล์ส่วนขยาย Seven JSON Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Minimal JSON Viewer with JSON Path Support. Features -------------- 1. Syntax Highlighting 2. Collapsible tree for improved readability 3. Dark themed 4. Realtime JSON Path support 5. Multiple Themes Note: This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
คำอธิบาย | Minimal JSON Viewer with JSON Path |
ขนาดไฟล์ | 228 KB |
จำนวนการติดตั้ง | 3,163 |
เวอร์ชันปัจจุบัน | 5.0 |
อัปเดตครั้งล่าสุด | 2022-07-27 |
วันที่เผยแพร่ | 2020-03-17 |
คะแนน | 4.50/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | https://reez.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://reez.dev/project/seven-json-viewer |
URL หน้าช่วยเหลือ | https://reez.dev/project/seven-json-viewer#support |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Seven JSON Viewer", "description": "Minimal JSON Viewer with JSON Path", "short_name": "JSON Viewer", "version": "5.0", "offline_enabled": true, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "run_at": "document_start", "all_frames": true } ], "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png", "512": "assets\/icon-512.png" }, "action": { "default_popup": "popup.html" } } |