Immutable.js Object Formatter

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

Co to jest Immutable.js Object Formatter?

Immutable.js Object Formatter to rozszerzenie Chrome opracowane przez Matt Zeunert, a jego główną funkcją jest „Makes Immutable JS objects more readable when they are logged to the console.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Immutable.js Object Formatter

Pobierz pliki rozszerzeń Immutable.js Object Formatter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
Oficjalny URL https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Opis Makes Immutable JS objects more readable when they are logged to the console.
Rozmiar pliku 43.46 KB
Liczba instalacji 7,573
Aktualna Wersja 1.9.3
Ostatnia Aktualizacja 2020-04-20
Data Publikacji 2020-04-15
Ocena 4.91/5 Łącznie 33 Oceny
Deweloper Matt Zeunert
Typ Płatności free
Strona Rozszerzenia https://github.com/mattzeunert/immutable-object-formatter-extension
Adres URL Strony Pomocy https://github.com/mattzeunert/immutable-object-formatter-extension/
Obsługiwane Języki 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"
    ]
}