JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
Что такое JSON Viewer Pro?
JSON Viewer Pro - это расширение Chrome, разработанное Rahul Baruri, и его основная функция - "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".
Снимки экрана расширения
Скачать файл CRX расширения JSON Viewer Pro
Скачайте файлы расширений JSON Viewer Pro в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.
✅ Completely Free and no advertisements.
Core features:
✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only json keyword Основная информация о расширении
| Название | |
| ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
| Официальный URL | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
| Описание | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
| Размер файла | 338 KB |
| Количество установок | 385,193 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2021-03-21 |
| Дата публикации | 2020-10-04 |
| Рейтинг | 4.77/5 Всего 111 оценок |
| Разработчик | Rahul Baruri |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/rbrahul/Awesome-JSON-Viewer |
| URL страницы помощи | https://github.com/rbrahul/Awesome-JSON-Viewer |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSON Viewer Pro",
"short_name": "JSON Viewer",
"offline_enabled": true,
"version": "1.0.1",
"manifest_version": 2,
"icons": {
"16": "images\/icons\/icon-16.png",
"38": "images\/icons\/icon-32.png",
"128": "images\/icons\/icon-128.png"
},
"background": {
"scripts": [
"\/js\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"\/js\/contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": "images\/icons\/icon-16.png"
},
"permissions": [
"*:\/\/*\/*",
"contextMenus"
],
"web_accessible_resources": [
"\/js\/main.js",
"\/css\/main.css",
"\/css\/themes\/mdn.css",
"options.html",
"images\/icons\/gear.png"
]
} | |