Immutable.js Object Formatter

Makes Immutable JS objects more readable when they are logged to the console.

ما هو Immutable.js Object Formatter؟

Immutable.js Object Formatter هو إضافة Chrome تم تطويرها بواسطة Matt Zeunert، والميزة الرئيسية لها هي "Makes Immutable JS objects more readable when they are logged to the console.".

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

screenshot

تحميل ملف CRX للإضافة Immutable.js Object Formatter

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

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

                        Transforms logged Immutable JS objects into a more readable format.

To use the extension you need to "Enable Custom Formatters" in the Chrome DevTools settings.

Based on Immutable DevTools: https://github.com/andrewdavey/immutable-devtools
Source Code: https://github.com/mattzeunert/immutable-object-formatter-extension                    

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

الاسم Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
عنوان URL الرسمي https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
الوصف Makes Immutable JS objects more readable when they are logged to the console.
حجم الملف 43.46 KB
عدد التثبيتات 7,573
النسخة الحالية 1.9.3
آخر تحديث 2020-04-20
تاريخ النشر 2020-04-15
تقييم 4.91/5 مجموع تقييمات 33
المطور Matt Zeunert
نوع الدفع free
موقع الإضافة https://github.com/mattzeunert/immutable-object-formatter-extension
عنوان صفحة المساعدة https://github.com/mattzeunert/immutable-object-formatter-extension/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Immutable.js Object Formatter",
    "short_name": "Immutable.js Object Formatter",
    "description": "Makes Immutable JS objects more readable when they are logged to the console.",
    "version": "1.9.3",
    "manifest_version": 2,
    "minimum_chrome_version": "48.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtool.html",
    "permissions": [
        "http:\/\/*\/*",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        "bundle.js"
    ]
}