JSON live editor

Live editor for JSON documents

JSON live editorคืออะไร?

JSON live editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stephan Ringel และคุณลักษณะหลักของมันคือ "Live editor for JSON documents"

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

screenshot

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

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

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

                        Little online and offline HTML, CSS and JavaScript code editor for messing around with JSON documents. For example, this tool will be useful if you want to manipulate and display JSON data outputted by a REST API. 

The editor will be activated automatically in the browser if a JSON document is detected (e.g. with http://jsondoc.eu01.aws.af.cm/api/jsondoc).

Features :
* HTML / CSS / JavaScript editor with syntax highlighting, search, replace and autocomplete
* Live code preview
* Drop code from File System
* Save code to File System
* Versioning using browser’s history and local storage
* Easy sharing via URL
* JSON Validator (invalid JSON is not editable)
* Key shortcuts:
- cmd + s / ctrl + s => live update / save
- cmd + e / ctrl + e => toggle preview / code editor 
- ctrl + space => autocomplete
- cmd + f / ctrl + f => search and highlight code
- cmd + g / ctrl + g => find next
- shift + cmd + g / shift + ctrl + g => find previous
- shift + ctrl + f / cmd + option + f => replace
- shift + ctrl + r / shift + cmd + option + f => replace all

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this).

Credits go to Mrdoob, Callum Locke and CodeMirror folks.                    

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

ชื่อ JSON live editor JSON live editor
ID aeboiihikjegpmcdjpnehnmpiiekjmhb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-live-editor/aeboiihikjegpmcdjpnehnmpiiekjmhb
คำอธิบาย Live editor for JSON documents
ขนาดไฟล์ 252 KB
จำนวนการติดตั้ง 1,166
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 3.43/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Stephan Ringel
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON live editor",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Live editor for JSON documents",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js",
                "js\/jquery.js",
                "js\/codemirror\/codemirror.js",
                "js\/codemirror\/search.js",
                "js\/codemirror\/searchcursor.js",
                "js\/codemirror\/dialog.js",
                "js\/codemirror\/show-hint.js",
                "js\/codemirror\/xml-hint.js",
                "js\/codemirror\/html-hint.js",
                "js\/codemirror\/javascript-hint.js",
                "js\/codemirror\/xml.js",
                "js\/codemirror\/javascript.js",
                "js\/codemirror\/css.js",
                "js\/codemirror\/htmlmixed.js",
                "js\/compression\/rawinflate.js",
                "js\/compression\/rawdeflate.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "template\/index.html"
    ],
    "permissions": [
        "*:\/\/*\/*",
        ""
    ]
}