JSON live editor

Live editor for JSON documents

Vad är JSON live editor?

JSON live editor är en Chrome-tillägg utvecklad av Stephan Ringel, och dess huvudfunktion är "Live editor for JSON documents".

Tilläggsskärmbilder

screenshot

Ladda ner JSON live editor-förlängningens CRX-fil

Ladda ner JSON live editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn JSON live editor JSON live editor
ID aeboiihikjegpmcdjpnehnmpiiekjmhb
Officiell webbadress https://chromewebstore.google.com/detail/json-live-editor/aeboiihikjegpmcdjpnehnmpiiekjmhb
Beskrivning Live editor for JSON documents
Filstorlek 252 KB
Antal Installationer 1,166
Aktuell Version 1.2.1
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 3.43/5 Totalt 14 Betyg
Utvecklare Stephan Ringel
Betalningssätt free
Stödda Språk 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": [
        "*:\/\/*\/*",
        ""
    ]
}