Prettify

Small extension that automatically make pages with JSON/XML/... content prettier.

ما هو Prettify؟

Prettify هو إضافة Chrome تم تطويرها بواسطة https://tiph.io، والميزة الرئيسية لها هي "Small extension that automatically make pages with JSON/XML/... content prettier.".

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

screenshot

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

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

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

                        Quick and dirty WebExtension that automatically makes JSON pages good looking. Turns the boring-looking stock JSON rendering into a nice looking, exandable/collaspable view.

The beauty of it is that it automatically runs on every page that has its Content-type set to application/json, so you can forget you've ever installed it, and just enjoy cool-looking JSON pages !                    

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

الاسم Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
عنوان URL الرسمي https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
الوصف Small extension that automatically make pages with JSON/XML/... content prettier.
حجم الملف 13.27 KB
عدد التثبيتات 1,049
النسخة الحالية 1.0.1
آخر تحديث 2019-12-01
تاريخ النشر 2019-11-27
تقييم 5.00/5 مجموع تقييمات 1
المطور https://tiph.io
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://edt.tiph.io/privacy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify",
    "version": "1.0.1",
    "description": "Small extension that automatically make pages with JSON\/XML\/... content prettier.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}