Github JSON Editor
Github JSON Editor
Github JSON Editorคืออะไร?
Github JSON Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย techierishi และคุณลักษณะหลักของมันคือ "Github JSON Editor"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github JSON Editor
ดาวน์โหลดไฟล์ส่วนขยาย Github JSON Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
We normally have many Github repository multiple JSON files in it. Most times these JSON files are application configuration and we tend to edit them directly from Github. As Github's own editor doesn't have any sort of validation for checking the syntax of the JSON file being saved, we sometimes save these JSON files with syntax error which results in app runtime error. This chrome plugin helps you make sure you are not saving wrong JSON and keeps your JSON formatted. Steps to use it: 1. Install this plugin from Chrome web store. 2. Open this plugin and save your settings like Github token, Username, Email etc. 3. Now open any JSON file on Github. You shall see a button labelled 'JSON Editor'. Click on that button 4. Plugin will open with that JSON filled in a new tab. 5. Now you can make any changes to JSON and finally click 'Save' button to commit your changes to your repository. Support for multiple settings based on host Source: https://github.com/techierishi/gejson.git
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github JSON Editor |
ID | ojkpalfdidhnipfgeaaopjfkgemancnd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-json-editor/ojkpalfdidhnipfgeaaopjfkgemancnd |
คำอธิบาย | Github JSON Editor |
ขนาดไฟล์ | 517 KB |
จำนวนการติดตั้ง | 52 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2022-07-18 |
วันที่เผยแพร่ | 2022-07-13 |
ผู้พัฒนา | techierishi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/techierishi/gejson.git |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github JSON Editor", "version": "1.4.1", "description": "Github JSON Editor", "manifest_version": 3, "author": "Rishi", "permissions": [], "background": { "service_worker": "background.js" }, "action": { "default_icon": "res\/img\/16.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*", "https:\/\/*.github.com\/*", "http:\/\/*.github.ibm.com\/*", "https:\/\/*.github.ibm.com\/*" ], "js": [ "insert.js" ], "run_at": "document_end" } ], "icons": { "16": "res\/img\/16.png", "32": "res\/img\/32.png", "48": "res\/img\/48.png", "128": "res\/img\/128.png" } } |