JSON pathfinder

Formats websites containing JSON and allows to search them using jsonpath

Co to jest JSON pathfinder?

JSON pathfinder to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Formats websites containing JSON and allows to search them using jsonpath”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia JSON pathfinder

Pobierz pliki rozszerzeń JSON pathfinder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Formats websites containing JSON and allows to search them using jsonpath                    

Podstawowe informacje o rozszerzeniu

Nazwa JSON pathfinder JSON pathfinder
ID cgpbbgjlljobcemhhimjknkldpinacpn
Oficjalny URL https://chromewebstore.google.com/detail/json-pathfinder/cgpbbgjlljobcemhhimjknkldpinacpn
Opis Formats websites containing JSON and allows to search them using jsonpath
Rozmiar pliku 561 KB
Liczba instalacji 9,247
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2016-10-31
Data Publikacji 2016-10-31
Ocena 2.55/5 Łącznie 11 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/radek-novak/json-commander
Obsługiwane Języki 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"
    ]
}