JSONView

View JSON documents in the browser.

ما هو JSONView؟

JSONView هو إضافة Chrome تم تطويرها بواسطة https://jsonview.com، والميزة الرئيسية لها هي "View JSON documents in the browser.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة JSONView

قم بتنزيل ملفات الامتداد JSONView بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

معلومات أساسية عن التمديد

الاسم JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
عنوان URL الرسمي https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
الوصف View JSON documents in the browser.
حجم الملف 84.08 KB
عدد التثبيتات 212,006
النسخة الحالية 2.6.1
آخر تحديث 2024-01-11
تاريخ النشر 2019-03-16
تقييم 4.10/5 مجموع تقييمات 29
المطور https://jsonview.com
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/bhollis/jsonview/issues
اللغات المدعومة id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}