Basic JSON Formatter

Adds a page action to pretty-print JSON

Что такое Basic JSON Formatter?

Basic JSON Formatter - это расширение Chrome, разработанное Dr. McKay, и его основная функция - "Adds a page action to pretty-print JSON".

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

screenshot
screenshot

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

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

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

                        This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click.

Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.                    

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

Название Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
Официальный URL https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
Описание Adds a page action to pretty-print JSON
Размер файла 222 KB
Количество установок 483
Текущая Версия 3.0.0
Последнее Обновление 2022-07-07
Дата публикации 2021-05-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Dr. McKay
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/DoctorMcKay/firefox-json-formatter
URL страницы помощи https://github.com/DoctorMcKay/firefox-json-formatter/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic JSON Formatter",
    "version": "3.0.0",
    "description": "Adds a page action to pretty-print JSON",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "Format JSON",
        "default_popup": "popups\/no_json.html"
    },
    "options_ui": {
        "page": "options_ui\/options.html",
        "browser_style": true
    }
}