JSON Viewer

Makes JSON response easy to read.

ما هو JSON Viewer؟

JSON Viewer هو إضافة Chrome تم تطويرها بواسطة https://timleland.com، والميزة الرئيسية لها هي "Makes JSON response easy to read.".

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

screenshot

تحميل ملف CRX للإضافة JSON Viewer

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

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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

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

الاسم JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
عنوان URL الرسمي https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
الوصف Makes JSON response easy to read.
حجم الملف 59.51 KB
عدد التثبيتات 4,749
النسخة الحالية 2.0.0
آخر تحديث 2022-02-24
تاريخ النشر 2020-09-13
تقييم 5.00/5 مجموع تقييمات 1
المطور https://timleland.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://timleland.com/json-viewer-extension/
عنوان صفحة المساعدة https://timleland.com/contact/
عنوان صفحة سياسة الخصوصية https://t.ly/privacy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}