JSON Lite

Fast JSON viewer - highlights, shows items count/size, handles large files

Qu'est-ce que JSON Lite ?

JSON Lite est une extension Chrome développée par Lauri Rooden, et sa fonction principale est "Fast JSON viewer - highlights, shows items count/size, handles large files".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension JSON Lite 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

                        Features:

 - Format JSON/JSONP responses and clipboard
 - Select and format/encode/decode text on every page
 - Collapsible arrays, objects and long values
 - Collapse all childs with Ctrl(Command) + Click
 - Collapse property also on all sibling items with Alt(Option) + Click
 - Count items and properties in a collection
 - Show collection sizes
 - Do its best to show large (10MB+) JSON files
 - Do its best to show invalid JSON files
 - Do not sort objects with numeric keys
 - Do not round large numbers
 - "Save as..." saves the original JSON document
 - Select and copy a working JSON from the formatted JSON

Copyright (c) 2016-2023 Lauri Rooden  
The MIT License                    

Informations de Base sur l'Extension

Nom JSON Lite JSON Lite
ID acacmjcicejlmjcheoklfdchempahoag
URL Officiel https://chromewebstore.google.com/detail/json-lite/acacmjcicejlmjcheoklfdchempahoag
Description Fast JSON viewer - highlights, shows items count/size, handles large files
Taille du Fichier 21.82 KB
Nombre d'Installations 10,498
Version Actuelle 23.5.0
Dernière Mise à Jour 2023-05-20
Date de Publication 2019-06-18
Évaluation 4.88/5 Total 48 Évaluations
Développeur Lauri Rooden
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lauriro/json-lite
URL de la Page d'Aide https://github.com/lauriro/json-lite/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Lite",
    "version": "23.5.0",
    "author": "Lauri Rooden",
    "description": "Fast JSON viewer - highlights, shows items count\/size, handles large files",
    "icons": {
        "128": "img\/icon-128.png",
        "48": "img\/icon-48.png",
        "32": "img\/icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png"
        },
        "default_popup": "options.html?p"
    }
}