Basic JSON Formatter

Adds a page action to pretty-print JSON

ما هو Basic JSON Formatter؟

Basic JSON Formatter هو إضافة Chrome تم تطويرها بواسطة Dr. McKay، والميزة الرئيسية لها هي "Adds a page action to pretty-print JSON".

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

screenshot
screenshot

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

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

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

                        This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click.

Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.                    

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

الاسم Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
عنوان URL الرسمي https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
الوصف Adds a page action to pretty-print JSON
حجم الملف 222 KB
عدد التثبيتات 483
النسخة الحالية 3.0.0
آخر تحديث 2022-07-07
تاريخ النشر 2021-05-27
تقييم 5.00/5 مجموع تقييمات 2
المطور Dr. McKay
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/DoctorMcKay/firefox-json-formatter
عنوان صفحة المساعدة https://github.com/DoctorMcKay/firefox-json-formatter/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic JSON Formatter",
    "version": "3.0.0",
    "description": "Adds a page action to pretty-print JSON",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "Format JSON",
        "default_popup": "popups\/no_json.html"
    },
    "options_ui": {
        "page": "options_ui\/options.html",
        "browser_style": true
    }
}