JSONVue

Validate and view JSON documents

JSONVueคืออะไร?

JSONVue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gildas และคุณลักษณะหลักของมันคือ "Validate and view JSON documents"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSONVue

ดาวน์โหลดไฟล์ส่วนขยาย JSONVue ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        JSONView port for Chrome.

Original firefox extension is here: http://benhollis.net/software/jsonview/ 

Notes: 
 - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
 - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
 - The stylesheet used to display the JSON content can be customized
 - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
คำอธิบาย Validate and view JSON documents
ขนาดไฟล์ 181 KB
จำนวนการติดตั้ง 1,257,839
เวอร์ชันปัจจุบัน 0.2.3
อัปเดตครั้งล่าสุด 2023-11-29
วันที่เผยแพร่ 2017-01-06
คะแนน 4.54/5 รวมทั้งหมด 2651 คะแนน
ผู้พัฒนา gildas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gildas-lormeau/JSONVue
URL หน้าช่วยเหลือ https://github.com/gildas-lormeau/JSONVue/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONVue",
    "icons": {
        "16": "resources\/jsonvue16.png",
        "48": "resources\/jsonvue48.png",
        "128": "resources\/jsonvue128.png"
    },
    "version": "0.2.3",
    "description": "Validate and view JSON documents",
    "options_ui": {
        "browser_style": true,
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "manifest_version": 3
}