Prettify

Small extension that automatically make pages with JSON/XML/... content prettier.

Co to jest Prettify?

Prettify to rozszerzenie Chrome opracowane przez https://tiph.io, a jego główną funkcją jest „Small extension that automatically make pages with JSON/XML/... content prettier.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Prettify

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

                        Quick and dirty WebExtension that automatically makes JSON pages good looking. Turns the boring-looking stock JSON rendering into a nice looking, exandable/collaspable view.

The beauty of it is that it automatically runs on every page that has its Content-type set to application/json, so you can forget you've ever installed it, and just enjoy cool-looking JSON pages !                    

Podstawowe informacje o rozszerzeniu

Nazwa Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
Oficjalny URL https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
Opis Small extension that automatically make pages with JSON/XML/... content prettier.
Rozmiar pliku 13.27 KB
Liczba instalacji 1,049
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-12-01
Data Publikacji 2019-11-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://tiph.io
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://edt.tiph.io/privacy.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify",
    "version": "1.0.1",
    "description": "Small extension that automatically make pages with JSON\/XML\/... content prettier.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}