Basic JSON Formatter

Adds a page action to pretty-print JSON

Basic JSON Formatter là gì?

Basic JSON Formatter là một tiện ích mở rộng Chrome được phát triển bởi Dr. McKay, và tính năng chính của nó là "Adds a page action to pretty-print JSON".

Ả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 Basic JSON Formatter

Tải xuống các tệp mở rộng Basic 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

                        This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click.

Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.                    

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

Tên Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
URL Chính Thức https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
Mô tả Adds a page action to pretty-print JSON
Kích Thước Tệp 222 KB
Số Lần Cài Đặt 483
Phiên Bản Hiện Tại 3.0.0
Cập Nhật Lần Cuối 2022-07-07
Ngày Phát Hành 2021-05-27
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Dr. McKay
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DoctorMcKay/firefox-json-formatter
URL Trang Trợ Giúp https://github.com/DoctorMcKay/firefox-json-formatter/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic JSON Formatter",
    "version": "3.0.0",
    "description": "Adds a page action to pretty-print JSON",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "Format JSON",
        "default_popup": "popups\/no_json.html"
    },
    "options_ui": {
        "page": "options_ui\/options.html",
        "browser_style": true
    }
}