JSON[B] Viewer

JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.

什么是JSON[B] Viewer?

JSON[B] Viewer是由https://jsonb.online开发的Chrome扩展程序,该扩展的主要功能是“JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载JSON[B] Viewer扩展crx文件

下载JSON[B] Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The most beautiful JSON tools that your eyes have ever seen.
It is a Chrome extension for JSON.

Notes:
* This extension might crash with other JSON highlighters/formatters, you may need to disable them
* To highlight local files and incognito tabs you have to manually enable these options on the extensions page
* Sometimes when the plugin updates chrome leaves the old background process running and revokes some options, like the access to local files. When this happen just recheck the option that everything will work again
* Works on local files (if you enable this in chrome://extensions).                    

扩展基本信息

名称 JSON[B] Viewer JSON[B] Viewer
ID jnhbjoikcefpmjiicnmgncglcjeefomk
官方URL https://chromewebstore.google.com/detail/jsonb-viewer/jnhbjoikcefpmjiicnmgncglcjeefomk
简介 JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.
文件大小 17.4 KB
安装次数 150
当前版本 2.1.0
更新时间 2021-09-02
上架时间 2021-09-02
评分 5.00/5 共2次评分
开发者 https://jsonb.online
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.jsonb.online
帮助页面URL https://www.jsonb.online
隐私政策页面URL https://www.jsonb.online/legal/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON[B] Viewer",
    "version": "2.1.0",
    "manifest_version": 2,
    "author": "JSON[B] ",
    "description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
    "homepage_url": "https:\/\/www.jsonb.online",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "assets\/icons\/128.png",
        "32": "assets\/icons\/32.png",
        "16": "assets\/icons\/16.png"
    },
    "web_accessible_resources": [],
    "offline_enabled": true,
    "omnibox": {
        "keyword": "jsonb"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/viewer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https:\/\/www.jsonb.online"
}