JSON input-check

This extension is a JSON checker for input fields.

JSON input-checkคืออะไร?

JSON input-check เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikita Matusevich และคุณลักษณะหลักของมันคือ "This extension is a JSON checker for input fields."

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

screenshot
screenshot

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

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

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

                        This is the best extension for validating, formatting and editing of JSON strings.

If you need to validate, format or edit:
* Some single JSON
   You can use the popup window. The red indicator in the right-top corner of the input field will show, if you have some errors in JSON string. When you hover over the indicator, it'll show you what exact error you have and in which line. If you see the green indicator in the right-top corner, it means you don't have any errors, but you can hover over this green indicator and click, it will format your JSON string. Also, our JSON editor will help with editing of JSON without any format issues.
* JSON strings in all input fields at your page
   You can enable `Check all inputs on the current tab` option at the popup window, and it will inject our extension to all input fields and you'll be able to validate and format JSON input as it's at the popup window.                    

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

ชื่อ JSON input-check JSON input-check
ID afkcobgeilopilhejnooendjenbmfmaa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/json-input-check/afkcobgeilopilhejnooendjenbmfmaa
คำอธิบาย This extension is a JSON checker for input fields.
ขนาดไฟล์ 2.17 MB
จำนวนการติดตั้ง 103
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2018-11-12
วันที่เผยแพร่ 2018-11-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Nikita Matusevich
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ http://matusevich.it
URL หน้านโยบายความเป็นส่วนตัว https://presto-privacy-policy.herokuapp.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON input-check",
    "description": "This extension is a JSON checker for input fields.",
    "version": "0.2.1",
    "author": "Nikita Matusevich",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "scripts\/content\/styles\/common.css"
            ],
            "js": [
                "scripts\/config\/default.js",
                "scripts\/namespace.js",
                "scripts\/libs\/jsonlint.js",
                "scripts\/libs\/formatter.js",
                "scripts\/content\/constants\/common.constants.js",
                "scripts\/content\/helpers\/utils.helpers.js",
                "scripts\/content\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "JSON input-check",
        "default_icon": {
            "16": ".\/logos\/logo_16.png",
            "19": ".\/logos\/logo_19.png",
            "38": ".\/logos\/logo_38.png",
            "48": ".\/logos\/logo_48.png",
            "96": ".\/logos\/logo_96.png",
            "128": ".\/logos\/logo_128.png"
        }
    },
    "background": {
        "scripts": [
            "scripts\/config\/default.js",
            "scripts\/namespace.js",
            "scripts\/background\/constants\/background.constants.js",
            "scripts\/background\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/logos\/logo_16.png",
        "19": ".\/logos\/logo_19.png",
        "38": ".\/logos\/logo_38.png",
        "48": ".\/logos\/logo_48.png",
        "96": ".\/logos\/logo_96.png",
        "128": ".\/logos\/logo_128.png"
    },
    "logo": {
        "green": ".\/logos\/logo_128.png",
        "gray": ".\/logos\/logo_gray_128.png"
    },
    "permissions": [
        "activeTab"
    ]
}