JSON Formatter

Makes JSON easy to read. Open source.

Was ist JSON Formatter?

JSON Formatter ist eine Chrome-Erweiterung, die von https://www.cafeboy.org entwickelt wurde, und ihr Hauptmerkmal ist "Makes JSON easy to read. Open source.".

Erweiterungsscreenshots

screenshot
screenshot

JSON Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie JSON Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
Offizielle URL https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Beschreibung Makes JSON easy to read. Open source.
Dateigröße 30.93 KB
Installationsanzahl 12,295
Aktuelle Version 0.6.0.3
Letztes Update 2022-06-18
Veröffentlichungsdatum 2020-05-10
Bewertung 4.43/5 Insgesamt 21 Bewertungen
Entwickler https://www.cafeboy.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jumkey/json-formatter
Hilfeseite URL https://github.com/jumkey/json-formatter/issues
URL der Datenschutzrichtlinien-Seite https://www.cafeboy.org/privacy.html
Unterstützte Sprachen 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",
        ""
    ]
}