JSON Formatter

Makes JSON easy to read. Open source.

JSON Formatterคืออะไร?

JSON Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.cafeboy.org และคุณลักษณะหลักของมันคือ "Makes JSON easy to read. Open source."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSON Formatter

ดาวน์โหลดไฟล์ส่วนขยาย JSON Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
คำอธิบาย Makes JSON easy to read. Open source.
ขนาดไฟล์ 30.93 KB
จำนวนการติดตั้ง 12,295
เวอร์ชันปัจจุบัน 0.6.0.3
อัปเดตครั้งล่าสุด 2022-06-18
วันที่เผยแพร่ 2020-05-10
คะแนน 4.43/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา https://www.cafeboy.org
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jumkey/json-formatter
URL หน้าช่วยเหลือ https://github.com/jumkey/json-formatter/issues
URL หน้านโยบายความเป็นส่วนตัว https://www.cafeboy.org/privacy.html
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}