Rainbow JSON Formatter

Makes JSON easy to read. Open source.

Rainbow JSON Formatter là gì?

Rainbow JSON Formatter là một tiện ích mở rộng Chrome được phát triển bởi vitozev, và tính năng chính của nó là "Makes JSON easy to read. Open source.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rainbow JSON Formatter

Tải xuống các tệp mở rộng Rainbow JSON Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rainbow JSON Formatter Rainbow JSON Formatter
ID dbiolbddipbicaokllijphafkgbedhcm
URL Chính Thức https://chromewebstore.google.com/detail/rainbow-json-formatter/dbiolbddipbicaokllijphafkgbedhcm
Mô tả Makes JSON easy to read. Open source.
Kích Thước Tệp 52.65 KB
Số Lần Cài Đặt 866
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2020-12-02
Ngày Phát Hành 2020-10-06
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển vitozev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vitozev/rainbow-json-formatter
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*",
        ""
    ]
}