JSON Formatter

Makes JSON easy to read. Open source.

JSON Formatter là gì?

JSON Formatter là một tiện ích mở rộng Chrome được phát triển bởi Nik Rolls, 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 JSON Formatter

Tải xuống các tệp mở rộng 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. Open source. A fork of the original (no-longer updated) extension by Callum Locke.

FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting with 36 light and dark themes
   •   Collapsible trees, with indent guides
   •   Line numbers
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   Works on any valid JSON page – URL doesn't matter
   •   Works on local files too (if you enable this in chrome://extensions)
   •   You can inspect the JSON by typing "json" in the console

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this.)

PRO TIP
Hold down Ctrl (or Cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/nikrolls/json-formatter

BUGS/SUGGESTIONS
github.com/nikrolls/json-formatter/issues

QUESTIONS
twitter.com/nikrolls                    

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

Tên JSON Formatter JSON Formatter
ID mhimpmpmffogbmmkmajibklelopddmjf
URL Chính Thức https://chromewebstore.google.com/detail/json-formatter/mhimpmpmffogbmmkmajibklelopddmjf
Mô tả Makes JSON easy to read. Open source.
Kích Thước Tệp 40.9 KB
Số Lần Cài Đặt 45,977
Phiên Bản Hiện Tại 0.10.0
Cập Nhật Lần Cuối 2017-05-08
Ngày Phát Hành 2017-05-08
Đánh Giá 4.35/5 Tổng số 65 Đánh Giá
Nhà Phát Triển Nik Rolls
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nikrolls/json-formatter
URL Trang Trợ Giúp https://github.com/nikrolls/json-formatter/Issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.10.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/nikrolls\/json-formatter",
    "author": "Nik Rolls, Callum Locke",
    "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",
        "*:\/\/*\/*",
        ""
    ]
}