JSON live editor

Live editor for JSON documents

Cos'è JSON live editor?

JSON live editor è un'estensione di Chrome sviluppata da Stephan Ringel, e la sua funzione principale è "Live editor for JSON documents".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JSON live editor

Scarica i file di estensione JSON live editor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome JSON live editor JSON live editor
ID aeboiihikjegpmcdjpnehnmpiiekjmhb
URL Ufficiale https://chromewebstore.google.com/detail/json-live-editor/aeboiihikjegpmcdjpnehnmpiiekjmhb
Descrizione Live editor for JSON documents
Dimensione del File 252 KB
Conteggio Installazioni 1,166
Versione Corrente 1.2.1
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 3.43/5 Totale 14 Valutazioni
Sviluppatore Stephan Ringel
Tipo di Pagamento free
Lingue Supportate 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": [
        "*:\/\/*\/*",
        ""
    ]
}