JSONVue

Validate and view JSON documents

Co to jest JSONVue?

JSONVue to rozszerzenie Chrome opracowane przez gildas, a jego główną funkcją jest „Validate and view JSON documents”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia JSONVue

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

                        JSONView port for Chrome.

Original firefox extension is here: http://benhollis.net/software/jsonview/ 

Notes: 
 - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
 - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
 - The stylesheet used to display the JSON content can be customized
 - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported                    

Podstawowe informacje o rozszerzeniu

Nazwa JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
Oficjalny URL https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Opis Validate and view JSON documents
Rozmiar pliku 181 KB
Liczba instalacji 1,257,839
Aktualna Wersja 0.2.3
Ostatnia Aktualizacja 2023-11-29
Data Publikacji 2017-01-06
Ocena 4.54/5 Łącznie 2651 Oceny
Deweloper gildas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gildas-lormeau/JSONVue
Adres URL Strony Pomocy https://github.com/gildas-lormeau/JSONVue/issues
Adres URL Strony Polityki Prywatności https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONVue",
    "icons": {
        "16": "resources\/jsonvue16.png",
        "48": "resources\/jsonvue48.png",
        "128": "resources\/jsonvue128.png"
    },
    "version": "0.2.3",
    "description": "Validate and view JSON documents",
    "options_ui": {
        "browser_style": true,
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "manifest_version": 3
}