JSON Formatter

Makes JSON easy to read. Open source.

Wat is JSON Formatter?

JSON Formatter is een Chrome-extensie ontwikkeld door https://www.cafeboy.org, en de belangrijkste functie is "Makes JSON easy to read. Open source.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie JSON Formatter

Download JSON Formatter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
Officiële URL https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Beschrijving Makes JSON easy to read. Open source.
Bestandsgrootte 30.93 KB
Aantal Installaties 12,295
Huidige Versie 0.6.0.3
Laatst Bijgewerkt 2022-06-18
Publicatiedatum 2020-05-10
Beoordeling 4.43/5 Totaal 21 Beoordelingen
Ontwikkelaar https://www.cafeboy.org
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jumkey/json-formatter
Help Pagina-URL https://github.com/jumkey/json-formatter/issues
URL van de Privacybeleid Pagina https://www.cafeboy.org/privacy.html
Ondersteunde Talen 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",
        ""
    ]
}