Seven JSON Viewer

Minimal JSON Viewer with JSON Path

ما هو Seven JSON Viewer؟

Seven JSON Viewer هو إضافة Chrome تم تطويرها بواسطة https://reez.dev، والميزة الرئيسية لها هي "Minimal JSON Viewer with JSON Path".

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

screenshot
screenshot
screenshot

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

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

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

                        Minimal JSON Viewer with JSON Path Support.

Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes

Note: 
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.                    

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

الاسم Seven JSON Viewer Seven JSON Viewer
ID cfahdpkjihoomfomffdbmamapgdpohoe
عنوان URL الرسمي https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe
الوصف Minimal JSON Viewer with JSON Path
حجم الملف 228 KB
عدد التثبيتات 3,163
النسخة الحالية 5.0
آخر تحديث 2022-07-27
تاريخ النشر 2020-03-17
تقييم 4.50/5 مجموع تقييمات 8
المطور https://reez.dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://reez.dev/project/seven-json-viewer
عنوان صفحة المساعدة https://reez.dev/project/seven-json-viewer#support
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seven JSON Viewer",
    "description": "Minimal JSON Viewer with JSON Path",
    "short_name": "JSON Viewer",
    "version": "5.0",
    "offline_enabled": true,
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png",
        "512": "assets\/icon-512.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}