Rainbow JSON Formatter

Makes JSON easy to read. Open source.

什么是Rainbow JSON Formatter?

Rainbow JSON Formatter是由vitozev开发的Chrome扩展程序,该扩展的主要功能是“Makes JSON easy to read. Open source.”。

扩展截图

screenshot
screenshot

下载Rainbow JSON Formatter扩展crx文件

下载Rainbow JSON Formatter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Makes JSON easy to read by formatting it and apply different colors for bracket pairs.

=== Features ===

- JSON & JSONP support
- Rainbow colors for bracket pairs
- Syntax highlighting with 36 light and dark themes 
- Line numbers 
- Clickable URLs
- Toggle between raw and parsed JSON 
- Works on local files too (if you enable this in chrome://extension)
- You can inspect the JSON by typing "json" in the console 


Note: This extension might clash with other JSON beautifiers, make sure you're using only one of them.

=== Privacy ===

No tracking, no advertising.

=== Source Code ===

https://github.com/vitozev/rainbow-json-formatter

=== Bugs & Improvement Requests

https://github.com/vitozev/rainbow-json-formatter/issues

=== Pro Tip ===

Hold down the Ctrl (or Cmd on Mac) key while collapsing a tree if you want to collapse all its siblings as well.                    

扩展基本信息

名称 Rainbow JSON Formatter Rainbow JSON Formatter
ID dbiolbddipbicaokllijphafkgbedhcm
官方URL https://chromewebstore.google.com/detail/rainbow-json-formatter/dbiolbddipbicaokllijphafkgbedhcm
简介 Makes JSON easy to read. Open source.
文件大小 52.65 KB
安装次数 866
当前版本 0.1.2
更新时间 2020-12-02
上架时间 2020-10-06
评分 4.33/5 共6次评分
开发者 vitozev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/vitozev/rainbow-json-formatter
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rainbow JSON Formatter",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/vitozev\/json-formatter",
    "author": "Kristian Vitozev",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}