Mobx Prettier

Prettify Mobx objects in Chrome console and debugger.

Что такое Mobx Prettier?

Mobx Prettier - это расширение Chrome, разработанное Finga, и его основная функция - "Prettify Mobx objects in Chrome console and debugger.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Mobx Prettier

Скачайте файлы расширений Mobx Prettier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Mobx Prettier Mobx Prettier
ID helikjgacgldannkhjdncofmeodpabmp
Официальный URL https://chromewebstore.google.com/detail/mobx-prettier/helikjgacgldannkhjdncofmeodpabmp
Описание Prettify Mobx objects in Chrome console and debugger.
Размер файла 16.96 KB
Количество установок 104
Текущая Версия 1.0.0
Последнее Обновление 2022-09-19
Дата публикации 2022-09-19
Разработчик Finga
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/fingerartur/mobx_prettier/
URL страницы помощи https://github.com/fingerartur/mobx_prettier/issues
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}