Mobeix Response Formatter

Chrome Extension to Beautify Mobeix Response

Что такое Mobeix Response Formatter?

Mobeix Response Formatter - это расширение Chrome, разработанное tagitextensions, и его основная функция - "Chrome Extension to Beautify Mobeix Response".

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

screenshot
screenshot

Скачать файл CRX расширения Mobeix Response Formatter

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

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

                        Identify error response – Identify error response in a single click.

Prettify conveniently – Use Prettify buttons for formatting the Mobeix response string.

Copy and paste conveniently – Use Copy Prettified Response buttons for copying the complete response in one click.

Version 1.2 

- Supports utf-16 response.

Version 1.3 

- resolved bugs.
- enabled copy paste option.

Version 1.4 

- supports Mobeix response containing JSON values.

Version 1.5

- Upgraded to Manifest version 3.
- Removed activeTab permission.

Version 1.6

- Removed tabs permission.                    

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

Название Mobeix Response Formatter Mobeix Response Formatter
ID aadbccnfhppdlnleiebemjlbnehbecpj
Официальный URL https://chromewebstore.google.com/detail/mobeix-response-formatter/aadbccnfhppdlnleiebemjlbnehbecpj
Описание Chrome Extension to Beautify Mobeix Response
Размер файла 47.76 KB
Количество установок 297
Текущая Версия 1.6
Последнее Обновление 2021-07-06
Дата публикации 2017-06-15
Рейтинг 5.00/5 Всего 16 оценок
Разработчик tagitextensions
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mobeix Response Formatter",
    "description": "Chrome Extension to Beautify Mobeix Response",
    "version": "1.6",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*"
            ],
            "css": [],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": []
}