Basic JSON Formatter
Adds a page action to pretty-print JSON
什么是Basic JSON Formatter?
Basic JSON Formatter是由Dr. McKay开发的Chrome扩展程序,该扩展的主要功能是“Adds a page action to pretty-print JSON”。
扩展截图
下载Basic JSON Formatter扩展crx文件
下载Basic JSON Formatter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |   |  
| ID | ceomfncodjlgpdebgjlbpcibgbcolfln | 
| 官方URL | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln | 
| 简介 | Adds a page action to pretty-print JSON | 
| 文件大小 | 222 KB | 
| 安装次数 | 483 | 
| 当前版本 | 3.0.0 | 
| 更新时间 | 2022-07-07 | 
| 上架时间 | 2021-05-27 | 
| 评分 | 5.00/5 共2次评分 | 
| 开发者 | Dr. McKay | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/DoctorMcKay/firefox-json-formatter | 
| 帮助页面URL | https://github.com/DoctorMcKay/firefox-json-formatter/issues | 
| 支持的语言 | 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
    }
}  |  |