JSON Formatter

Makes JSON easy to read. Open source.

Cos'è JSON Formatter?

JSON Formatter è un'estensione di Chrome sviluppata da https://www.cafeboy.org, e la sua funzione principale è "Makes JSON easy to read. Open source.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione JSON Formatter

Scarica i file di estensione JSON Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

Informazioni di Base sull'Estensione

Nome JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
URL Ufficiale https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Descrizione Makes JSON easy to read. Open source.
Dimensione del File 30.93 KB
Conteggio Installazioni 12,295
Versione Corrente 0.6.0.3
Ultimo Aggiornamento 2022-06-18
Data di Pubblicazione 2020-05-10
Valutazione 4.43/5 Totale 21 Valutazioni
Sviluppatore https://www.cafeboy.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jumkey/json-formatter
URL della Pagina di Aiuto https://github.com/jumkey/json-formatter/issues
URL della Pagina della Politica sulla Privacy https://www.cafeboy.org/privacy.html
Lingue Supportate en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}