JSON Lite

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

Co je JSON Lite?

JSON Lite je rozšíření Chrome vyvinuté Lauri Rooden, a jeho hlavní funkcí je „Fast JSON viewer - highlights, shows items count/size, handles large files“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření JSON Lite

Stáhněte si soubory rozšíření JSON Lite ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název JSON Lite JSON Lite
ID acacmjcicejlmjcheoklfdchempahoag
Oficiální URL https://chromewebstore.google.com/detail/json-lite/acacmjcicejlmjcheoklfdchempahoag
Popis Fast JSON viewer - highlights, shows items count/size, handles large files
Velikost souboru 21.82 KB
Počet instalací 10,498
Aktuální Verze 23.5.0
Poslední Aktualizace 2023-05-20
Datum Vydání 2019-06-18
Hodnocení 4.88/5 Celkem 48 Hodnocení
Vývojář Lauri Rooden
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/lauriro/json-lite
URL Stránky Nápovědy https://github.com/lauriro/json-lite/issues
Podporované Jazyky 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"
    }
}