Basic JSON Formatter
Adds a page action to pretty-print JSON
Basic JSON Formatterคืออะไร?
Basic JSON Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dr. McKay และคุณลักษณะหลักของมันคือ "Adds a page action to pretty-print JSON"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Basic JSON Formatter
ดาวน์โหลดไฟล์ส่วนขยาย Basic JSON Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click. Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
คำอธิบาย | Adds a page action to pretty-print JSON |
ขนาดไฟล์ | 222 KB |
จำนวนการติดตั้ง | 483 |
เวอร์ชันปัจจุบัน | 3.0.0 |
อัปเดตครั้งล่าสุด | 2022-07-07 |
วันที่เผยแพร่ | 2021-05-27 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Dr. McKay |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/DoctorMcKay/firefox-json-formatter |
URL หน้าช่วยเหลือ | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Basic JSON Formatter", "version": "3.0.0", "description": "Adds a page action to pretty-print JSON", "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_icon": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "default_title": "Format JSON", "default_popup": "popups\/no_json.html" }, "options_ui": { "page": "options_ui\/options.html", "browser_style": true } } |