JSON Viewer

Port of Firefox's JSON Viewer

Co to jest JSON Viewer?

JSON Viewer to rozszerzenie Chrome opracowane przez Rongjian Zhang, a jego główną funkcją jest „Port of Firefox's JSON Viewer”.

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

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

Podstawowe informacje o rozszerzeniu

Nazwa JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
Oficjalny URL https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
Opis Port of Firefox's JSON Viewer
Rozmiar pliku 136 KB
Liczba instalacji 38,037
Aktualna Wersja 2.1.0
Ostatnia Aktualizacja 2023-09-17
Data Publikacji 2018-05-27
Ocena 4.75/5 Łącznie 40 Oceny
Deweloper Rongjian Zhang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/pd4d10/json-viewer
Adres URL Strony Pomocy https://github.com/pd4d10/json-viewer
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}