Basic JSON Formatter

Adds a page action to pretty-print JSON

Was ist Basic JSON Formatter?

Basic JSON Formatter ist eine Chrome-Erweiterung, die von Dr. McKay entwickelt wurde, und ihr Hauptmerkmal ist "Adds a page action to pretty-print JSON".

Erweiterungsscreenshots

screenshot
screenshot

Basic JSON Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Basic 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

                        This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click.

Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.                    

Grundlegende Informationen zur Erweiterung

Name Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
Offizielle URL https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
Beschreibung Adds a page action to pretty-print JSON
Dateigröße 222 KB
Installationsanzahl 483
Aktuelle Version 3.0.0
Letztes Update 2022-07-07
Veröffentlichungsdatum 2021-05-27
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Dr. McKay
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DoctorMcKay/firefox-json-formatter
Hilfeseite URL https://github.com/DoctorMcKay/firefox-json-formatter/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic JSON Formatter",
    "version": "3.0.0",
    "description": "Adds a page action to pretty-print JSON",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "Format JSON",
        "default_popup": "popups\/no_json.html"
    },
    "options_ui": {
        "page": "options_ui\/options.html",
        "browser_style": true
    }
}