JSON-handle

It's a browser and editor for JSON document.You can get a beautiful view

JSON-handle là gì?

JSON-handle là một tiện ích mở rộng Chrome được phát triển bởi https://jsonhandle.sinaapp.com, và tính năng chính của nó là "It's a browser and editor for JSON document.You can get a beautiful view".

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

screenshot
screenshot
screenshot

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

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

                        对JSON格式的内容进行浏览和编辑,以树形图样式展现JSON文档,并可实时编辑。

Edit and browse JSON document in a node tree diagram.

After installed, open the URL will trigger JSON-handle:
安装后打开下面网址可以看到JSON-handle启动的效果:
http://jsonhandle.sinaapp.com/demo.json                    

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

Tên JSON-handle JSON-handle
ID iahnhfdhidomcpggpaimmmahffihkfnj
URL Chính Thức https://chromewebstore.google.com/detail/json-handle/iahnhfdhidomcpggpaimmmahffihkfnj
Mô tả It's a browser and editor for JSON document.You can get a beautiful view
Kích Thước Tệp 193 KB
Số Lần Cài Đặt 207,603
Phiên Bản Hiện Tại 0.6.2
Cập Nhật Lần Cuối 2021-12-22
Ngày Phát Hành 2020-03-11
Đánh Giá 4.79/5 Tổng số 442 Đánh Giá
Nhà Phát Triển https://jsonhandle.sinaapp.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://jsonhandle.sinaapp.com/
URL Trang Trợ Giúp http://jsonhandle.sinaapp.com/
URL Trang Chính Sách Bảo Mật https://jsonhandle.sinaapp.com
Ngôn Ngữ Được Hỗ Trợ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON-handle",
    "version": "0.6.2",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "description": "It's a browser and editor for JSON document.You can get a beautiful view",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "JSON-handle",
        "default_icon": "logo16.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "JSON-handle\/JSON-handle.html",
        "options.html"
    ],
    "offline_enabled": true,
    "permissions": [
        "contextMenus",
        "webRequest",
        "tabs",
        ""
    ],
    "default_locale": "en"
}