JSONBeautifier
This extension allows user to easily delimit those pesky JSONs in Solr
Что такое JSONBeautifier?
JSONBeautifier - это расширение Chrome, разработанное US7, и его основная функция - "This extension allows user to easily delimit those pesky JSONs in Solr".
Снимки экрана расширения
Скачать файл CRX расширения JSONBeautifier
Скачайте файлы расширений JSONBeautifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever came across a stingified JSON object? JSON beautifier makes it easy, simple, and painless for you to convert strings to nicely formatted and readable JSON objects (and vice versa). With this easy extension, there is no need to open another browser, copy, paste, and then switch back to your original page. JSON beautifier was made to increase the latency of workflows I hope this helps you ! -----Coming Soon---- Select string text on the page and right click - popup with JSON formatted will appear automatically. Easy!
Основная информация о расширении
Название | |
ID | ofdckocemdaapnoahmbhgfbbodhffajc |
Официальный URL | https://chrome.google.com/webstore/detail/jsonbeautifier/ofdckocemdaapnoahmbhgfbbodhffajc |
Описание | This extension allows user to easily delimit those pesky JSONs in Solr |
Размер файла | 56.76 KB |
Количество установок | 44 |
Текущая Версия | 0.67 |
Последнее Обновление | 2017-11-13 |
Дата публикации | 2017-11-13 |
Разработчик | US7 |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/usharma7/JSONBeautifier |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JSONBeautifier", "description": "This extension allows user to easily delimit those pesky JSONs in Solr", "version": "0.67", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "contextMenus", "tabs", "*:\/\/*\/*" ], "background": { "scripts": [ "popup.js", "background.js", "selected.js" ], "persistent": true } } |