Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Что такое Seven JSON Viewer?
Seven JSON Viewer - это расширение Chrome, разработанное https://reez.dev, и его основная функция - "Minimal JSON Viewer with JSON Path".
Снимки экрана расширения
Скачать файл CRX расширения Seven JSON Viewer
Скачайте файлы расширений Seven JSON Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Minimal JSON Viewer with JSON Path Support. Features -------------- 1. Syntax Highlighting 2. Collapsible tree for improved readability 3. Dark themed 4. Realtime JSON Path support 5. Multiple Themes Note: This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.
Основная информация о расширении
Название | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
Официальный URL | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Описание | Minimal JSON Viewer with JSON Path |
Размер файла | 228 KB |
Количество установок | 3,163 |
Текущая Версия | 5.0 |
Последнее Обновление | 2022-07-27 |
Дата публикации | 2020-03-17 |
Рейтинг | 4.50/5 Всего 8 оценок |
Разработчик | https://reez.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://reez.dev/project/seven-json-viewer |
URL страницы помощи | https://reez.dev/project/seven-json-viewer#support |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Seven JSON Viewer", "description": "Minimal JSON Viewer with JSON Path", "short_name": "JSON Viewer", "version": "5.0", "offline_enabled": true, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "run_at": "document_start", "all_frames": true } ], "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png", "512": "assets\/icon-512.png" }, "action": { "default_popup": "popup.html" } } |