Immutable.js Object Formatter

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

Cos'è Immutable.js Object Formatter?

Immutable.js Object Formatter è un'estensione di Chrome sviluppata da Matt Zeunert, e la sua funzione principale è "Makes Immutable JS objects more readable when they are logged to the console.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Immutable.js Object Formatter

Scarica i file di estensione Immutable.js Object Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
URL Ufficiale https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Descrizione Makes Immutable JS objects more readable when they are logged to the console.
Dimensione del File 43.46 KB
Conteggio Installazioni 7,573
Versione Corrente 1.9.3
Ultimo Aggiornamento 2020-04-20
Data di Pubblicazione 2020-04-15
Valutazione 4.91/5 Totale 33 Valutazioni
Sviluppatore Matt Zeunert
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mattzeunert/immutable-object-formatter-extension
URL della Pagina di Aiuto https://github.com/mattzeunert/immutable-object-formatter-extension/
Lingue Supportate 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"
    ]
}