JSON Formatter

Makes JSON easy to read. Open source.

Qu'est-ce que JSON Formatter ?

JSON Formatter est une extension Chrome développée par https://www.cafeboy.org, et sa fonction principale est "Makes JSON easy to read. Open source.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension JSON Formatter

Téléchargez les fichiers d'extension JSON Formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
URL Officiel https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Description Makes JSON easy to read. Open source.
Taille du Fichier 30.93 KB
Nombre d'Installations 12,295
Version Actuelle 0.6.0.3
Dernière Mise à Jour 2022-06-18
Date de Publication 2020-05-10
Évaluation 4.43/5 Total 21 Évaluations
Développeur https://www.cafeboy.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jumkey/json-formatter
URL de la Page d'Aide https://github.com/jumkey/json-formatter/issues
URL de la Page de Politique de Confidentialité https://www.cafeboy.org/privacy.html
Langues Prises en Charge 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",
        ""
    ]
}