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 | 
| 官方網址 | 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
    }
}  |  |