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 https://www.cafeboy.org, 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

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

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

Tên JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
URL Chính Thức https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Mô tả Makes JSON easy to read. Open source.
Kích Thước Tệp 30.93 KB
Số Lần Cài Đặt 12,295
Phiên Bản Hiện Tại 0.6.0.3
Cập Nhật Lần Cuối 2022-06-18
Ngày Phát Hành 2020-05-10
Đánh Giá 4.43/5 Tổng số 21 Đánh Giá
Nhà Phát Triển https://www.cafeboy.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jumkey/json-formatter
URL Trang Trợ Giúp https://github.com/jumkey/json-formatter/issues
URL Trang Chính Sách Bảo Mật https://www.cafeboy.org/privacy.html
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}