Ultra Fast JSON Viewer

Quickly beautifies JSON.

Co to jest Ultra Fast JSON Viewer?

Ultra Fast JSON Viewer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Quickly beautifies JSON.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Ultra Fast JSON Viewer

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

                        Detects, parses, and renders JSON very fast by minimizing styling. Future updates will allow for finer control of level of styles.                    

Podstawowe informacje o rozszerzeniu

Nazwa Ultra Fast JSON Viewer Ultra Fast JSON Viewer
ID achlegaapdgcnnhfmliagapbampafine
Oficjalny URL https://chromewebstore.google.com/detail/ultra-fast-json-viewer/achlegaapdgcnnhfmliagapbampafine
Opis Quickly beautifies JSON.
Rozmiar pliku 9.94 KB
Liczba instalacji 252
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2017-06-22
Data Publikacji 2017-06-22
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ultra Fast JSON Viewer",
    "version": "1.0.4",
    "description": "Quickly beautifies JSON.",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "img\/icon - large.png",
        "default_popup": "popup.html"
    },
    "author": "Ed Mak",
    "icons": {
        "128": "img\/icon - large.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "file:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "settings.js",
                "jsonify.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "storage"
    ]
}