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 Nik Rolls, 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

                        Makes JSON easy to read. Open source. A fork of the original (no-longer updated) extension by Callum Locke.

FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting with 36 light and dark themes
   •   Collapsible trees, with indent guides
   •   Line numbers
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   Works on any valid JSON page – URL doesn't matter
   •   Works on local files too (if you enable this in chrome://extensions)
   •   You can inspect the JSON by typing "json" in the console

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this.)

PRO TIP
Hold down Ctrl (or Cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/nikrolls/json-formatter

BUGS/SUGGESTIONS
github.com/nikrolls/json-formatter/issues

QUESTIONS
twitter.com/nikrolls                    

Informations de Base sur l'Extension

Nom JSON Formatter JSON Formatter
ID mhimpmpmffogbmmkmajibklelopddmjf
URL Officiel https://chromewebstore.google.com/detail/json-formatter/mhimpmpmffogbmmkmajibklelopddmjf
Description Makes JSON easy to read. Open source.
Taille du Fichier 40.9 KB
Nombre d'Installations 45,977
Version Actuelle 0.10.0
Dernière Mise à Jour 2017-05-08
Date de Publication 2017-05-08
Évaluation 4.35/5 Total 65 Évaluations
Développeur Nik Rolls
Type de Paiement free
Site Web de l'Extension https://github.com/nikrolls/json-formatter
URL de la Page d'Aide https://github.com/nikrolls/json-formatter/Issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.10.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/nikrolls\/json-formatter",
    "author": "Nik Rolls, Callum Locke",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}