JSON pathfinder

Formats websites containing JSON and allows to search them using jsonpath

Что такое JSON pathfinder?

JSON pathfinder - это расширение Chrome, разработанное Unknown, и его основная функция - "Formats websites containing JSON and allows to search them using jsonpath".

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

screenshot

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

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

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

                        Formats websites containing JSON and allows to search them using jsonpath                    

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

Название JSON pathfinder JSON pathfinder
ID cgpbbgjlljobcemhhimjknkldpinacpn
Официальный URL https://chromewebstore.google.com/detail/json-pathfinder/cgpbbgjlljobcemhhimjknkldpinacpn
Описание Formats websites containing JSON and allows to search them using jsonpath
Размер файла 561 KB
Количество установок 9,247
Текущая Версия 0.0.1
Последнее Обновление 2016-10-31
Дата публикации 2016-10-31
Рейтинг 2.55/5 Всего 11 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/radek-novak/json-commander
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON pathfinder",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "",
    "homepage_url": "https:\/\/github.com\/radek-novak\/json-commander",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/icon_128.png",
        "32": "icons\/icon_32.png"
    },
    "background": {
        "scripts": [
            "build\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage"
    ]
}