JSON live editor

Live editor for JSON documents

Apa itu JSON live editor?

JSON live editor adalah ekstensi Chrome yang dikembangkan oleh Stephan Ringel, dan fitur utamanya adalah "Live editor for JSON documents".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi JSON live editor

Unduh file ekstensi JSON live editor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama JSON live editor JSON live editor
ID aeboiihikjegpmcdjpnehnmpiiekjmhb
URL Resmi https://chromewebstore.google.com/detail/json-live-editor/aeboiihikjegpmcdjpnehnmpiiekjmhb
Deskripsi Live editor for JSON documents
Ukuran File 252 KB
Jumlah Instalasi 1,166
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 3.43/5 Total 14 Penilaian
Pengembang Stephan Ringel
Tipe Pembayaran free
Bahasa yang Didukung 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": [
        "*:\/\/*\/*",
        ""
    ]
}