Mobx Prettier

Prettify Mobx objects in Chrome console and debugger.

Co to jest Mobx Prettier?

Mobx Prettier to rozszerzenie Chrome opracowane przez Finga, a jego główną funkcją jest „Prettify Mobx objects in Chrome console and debugger.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mobx Prettier

Pobierz pliki rozszerzeń Mobx Prettier 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

                        Mobx Prettier is a Chrome extension that prettifies / formats Mobx objects in Dev Tools console and debugger for easy inspection.                    

Podstawowe informacje o rozszerzeniu

Nazwa Mobx Prettier Mobx Prettier
ID helikjgacgldannkhjdncofmeodpabmp
Oficjalny URL https://chromewebstore.google.com/detail/mobx-prettier/helikjgacgldannkhjdncofmeodpabmp
Opis Prettify Mobx objects in Chrome console and debugger.
Rozmiar pliku 16.96 KB
Liczba instalacji 104
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-09-19
Data Publikacji 2022-09-19
Deweloper Finga
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/fingerartur/mobx_prettier/
Adres URL Strony Pomocy https://github.com/fingerartur/mobx_prettier/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mobx Prettier",
    "manifest_version": 3,
    "version": "1.0.0",
    "description": "Prettify Mobx objects in Chrome console and debugger.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Mobx Prettier",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page_script.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}