JSON Viewer

Makes JSON response easy to read.

Co to jest JSON Viewer?

JSON Viewer to rozszerzenie Chrome opracowane przez https://timleland.com, a jego główną funkcją jest „Makes JSON response easy to read.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia JSON Viewer

Pobierz pliki rozszerzeń JSON Viewer 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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

Podstawowe informacje o rozszerzeniu

Nazwa JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
Oficjalny URL https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Opis Makes JSON response easy to read.
Rozmiar pliku 59.51 KB
Liczba instalacji 4,749
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2022-02-24
Data Publikacji 2020-09-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://timleland.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://timleland.com/json-viewer-extension/
Adres URL Strony Pomocy https://timleland.com/contact/
Adres URL Strony Polityki Prywatności https://t.ly/privacy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}