JSONVue
Validate and view JSON documents
Что такое JSONVue?
JSONVue - это расширение Chrome, разработанное gildas, и его основная функция - "Validate and view JSON documents".
Снимки экрана расширения
Скачать файл CRX расширения JSONVue
Скачайте файлы расширений JSONVue в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
JSONView port for Chrome. Original firefox extension is here: http://benhollis.net/software/jsonview/ Notes: - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint) - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt) - The stylesheet used to display the JSON content can be customized - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported
Основная информация о расширении
Название | JSONVue |
ID | chklaanhfefbnpoihckbnefhakgolnmc |
Официальный URL | https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc |
Описание | Validate and view JSON documents |
Размер файла | 181 KB |
Количество установок | 1,257,839 |
Текущая Версия | 0.2.3 |
Последнее Обновление | 2023-11-29 |
Дата публикации | 2017-01-06 |
Рейтинг | 4.54/5 Всего 2651 оценок |
Разработчик | gildas |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gildas-lormeau/JSONVue |
URL страницы помощи | https://github.com/gildas-lormeau/JSONVue/issues |
URL страницы политики конфиденциальности | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSONVue", "icons": { "16": "resources\/jsonvue16.png", "48": "resources\/jsonvue48.png", "128": "resources\/jsonvue128.png" }, "version": "0.2.3", "description": "Validate and view JSON documents", "options_ui": { "browser_style": true, "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "contextMenus", "storage" ], "manifest_version": 3 } |