JSON Viewer React

JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.

Что такое JSON Viewer React?

JSON Viewer React - это расширение Chrome, разработанное seeto.alexander, и его основная функция - "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.                    

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

Название JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
Официальный URL https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
Описание JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
Размер файла 882 KB
Количество установок 529
Текущая Версия 1.0.2
Последнее Обновление 2022-11-13
Дата публикации 2019-03-08
Рейтинг 5.00/5 Всего 2 оценок
Разработчик seeto.alexander
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ASeeto/json-viewer-react
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.",
    "version": "1.0.2",
    "name": "JSON Viewer React",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "json-viewer-react-icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "json-viewer-react-icon-16.png",
        "48": "json-viewer-react-icon-48.png",
        "128": "json-viewer-react-icon-128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}