Immutable.js Object Formatter

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

Co je Immutable.js Object Formatter?

Immutable.js Object Formatter je rozšíření Chrome vyvinuté Matt Zeunert, a jeho hlavní funkcí je „Makes Immutable JS objects more readable when they are logged to the console.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Immutable.js Object Formatter

Stáhněte si soubory rozšíření Immutable.js Object Formatter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
Oficiální URL https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Popis Makes Immutable JS objects more readable when they are logged to the console.
Velikost souboru 43.46 KB
Počet instalací 7,573
Aktuální Verze 1.9.3
Poslední Aktualizace 2020-04-20
Datum Vydání 2020-04-15
Hodnocení 4.91/5 Celkem 33 Hodnocení
Vývojář Matt Zeunert
Typ Platby free
Webové stránky Rozšíření https://github.com/mattzeunert/immutable-object-formatter-extension
URL Stránky Nápovědy https://github.com/mattzeunert/immutable-object-formatter-extension/
Podporované Jazyky 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"
    ]
}