Basic JSON Formatter

Adds a page action to pretty-print JSON

Vad är Basic JSON Formatter?

Basic JSON Formatter är en Chrome-tillägg utvecklad av Dr. McKay, och dess huvudfunktion är "Adds a page action to pretty-print JSON".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Basic JSON Formatter-förlängningens CRX-fil

Ladda ner Basic JSON Formatter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
Officiell webbadress https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
Beskrivning Adds a page action to pretty-print JSON
Filstorlek 222 KB
Antal Installationer 483
Aktuell Version 3.0.0
Senast Uppdaterad 2022-07-07
Publiceringsdatum 2021-05-27
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Dr. McKay
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/DoctorMcKay/firefox-json-formatter
Hjälpsida URL https://github.com/DoctorMcKay/firefox-json-formatter/issues
Stödda Språk 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
    }
}