Jsonfy

With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.

Что такое Jsonfy?

Jsonfy - это расширение Chrome, разработанное Danilo Trindade, и его основная функция - "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".

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

screenshot
screenshot

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

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

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

                        With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.                    

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

Название Jsonfy Jsonfy
ID dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
Официальный URL https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
Описание With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Размер файла 23.51 KB
Количество установок 152
Текущая Версия 1.3
Последнее Обновление 2017-05-12
Дата публикации 2017-05-12
Разработчик Danilo Trindade
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.3",
    "name": "Jsonfy",
    "description": "With this chrome extension you can \"beatify\" your api Json with just one click. A simple way to view a formatted JSON structure.",
    "browser_action": {
        "default_icon": "images\/icon-inactive-38.png",
        "default_title": "Jsonfy"
    },
    "icons": {
        "16": "images\/icon-active-38.png",
        "128": "images\/icon-active.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background"
    ],
    "background": {
        "scripts": [
            "js\/actions.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/icon-active.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/actions.js"
            ],
            "css": [
                "css\/json.css"
            ]
        }
    ],
    "offline_enabled": false
}