Immutable.js Object Formatter

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

Qu'est-ce que Immutable.js Object Formatter ?

Immutable.js Object Formatter est une extension Chrome développée par Matt Zeunert, et sa fonction principale est "Makes Immutable JS objects more readable when they are logged to the console.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Immutable.js Object Formatter

Téléchargez les fichiers d'extension Immutable.js Object Formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
URL Officiel https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Description Makes Immutable JS objects more readable when they are logged to the console.
Taille du Fichier 43.46 KB
Nombre d'Installations 7,573
Version Actuelle 1.9.3
Dernière Mise à Jour 2020-04-20
Date de Publication 2020-04-15
Évaluation 4.91/5 Total 33 Évaluations
Développeur Matt Zeunert
Type de Paiement free
Site Web de l'Extension https://github.com/mattzeunert/immutable-object-formatter-extension
URL de la Page d'Aide https://github.com/mattzeunert/immutable-object-formatter-extension/
Langues Prises en Charge 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"
    ]
}