Immutable.js Object Formatter

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

What is Immutable.js Object Formatter?

Immutable.js Object Formatter is a Chrome extension developed by Matt Zeunert, and its main feature is "Makes Immutable JS objects more readable when they are logged to the console.".

Extension Screenshots

screenshot

Download Immutable.js Object Formatter Extension CRX File

Download Immutable.js Object Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
Official URL https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Description Makes Immutable JS objects more readable when they are logged to the console.
File Size 43.46 KB
Installation Count 7,573
Current Version 1.9.3
Last Updated 2020-04-20
Publish Date 2020-04-15
Rating 4.91/5 Total 33 Ratings
Developer Matt Zeunert
Payment Type free
Extension Website https://github.com/mattzeunert/immutable-object-formatter-extension
Help Page URL https://github.com/mattzeunert/immutable-object-formatter-extension/
Supported Languages 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"
    ]
}