JSON live editor

Live editor for JSON documents

什么是JSON live editor?

JSON live editor是由Stephan Ringel开发的Chrome扩展程序,该扩展的主要功能是“Live editor for JSON documents”。

扩展截图

screenshot

下载JSON live editor扩展crx文件

下载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": [
        "*:\/\/*\/*",
        ""
    ]
}