Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
Was ist Immutable.js Object Formatter?
Immutable.js Object Formatter ist eine Chrome-Erweiterung, die von Matt Zeunert entwickelt wurde, und ihr Hauptmerkmal ist "Makes Immutable JS objects more readable when they are logged to the console.".
Erweiterungsscreenshots
Immutable.js Object Formatter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Immutable.js Object Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | hgldghadipiblonfkkicmgcbbijnpeog | 
| Offizielle URL | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog | 
| Beschreibung | Makes Immutable JS objects more readable when they are logged to the console. | 
| Dateigröße | 43.46 KB | 
| Installationsanzahl | 7,573 | 
| Aktuelle Version | 1.9.3 | 
| Letztes Update | 2020-04-20 | 
| Veröffentlichungsdatum | 2020-04-15 | 
| Bewertung | 4.91/5 Insgesamt 33 Bewertungen | 
| Entwickler | Matt Zeunert | 
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/mattzeunert/immutable-object-formatter-extension | 
| Hilfeseite URL | https://github.com/mattzeunert/immutable-object-formatter-extension/ | 
| Unterstützte Sprachen | 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"
    ]
}  |  |