Immutable.js Object Formatter

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

Apa itu Immutable.js Object Formatter?

Immutable.js Object Formatter adalah ekstensi Chrome yang dikembangkan oleh Matt Zeunert, dan fitur utamanya adalah "Makes Immutable JS objects more readable when they are logged to the console.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Immutable.js Object Formatter

Unduh file ekstensi Immutable.js Object Formatter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
URL Resmi https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Deskripsi Makes Immutable JS objects more readable when they are logged to the console.
Ukuran File 43.46 KB
Jumlah Instalasi 7,573
Versi Saat Ini 1.9.3
Terakhir Diperbarui 2020-04-20
Tanggal Publikasi 2020-04-15
Penilaian 4.91/5 Total 33 Penilaian
Pengembang Matt Zeunert
Tipe Pembayaran free
Situs Ekstensi https://github.com/mattzeunert/immutable-object-formatter-extension
URL Halaman Bantuan https://github.com/mattzeunert/immutable-object-formatter-extension/
Bahasa yang Didukung 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"
    ]
}