JSON Formatter

Makes JSON easy to read. Open source.

Vad är JSON Formatter?

JSON Formatter är en Chrome-tillägg utvecklad av https://www.cafeboy.org, och dess huvudfunktion är "Makes JSON easy to read. Open source.".

Tilläggsskärmbilder

screenshot
screenshot

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

Ladda ner 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

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

Grundläggande Information om Tillägg

Namn JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
Officiell webbadress https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Beskrivning Makes JSON easy to read. Open source.
Filstorlek 30.93 KB
Antal Installationer 12,295
Aktuell Version 0.6.0.3
Senast Uppdaterad 2022-06-18
Publiceringsdatum 2020-05-10
Betyg 4.43/5 Totalt 21 Betyg
Utvecklare https://www.cafeboy.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jumkey/json-formatter
Hjälpsida URL https://github.com/jumkey/json-formatter/issues
URL till Sekretesspolicy Sidan https://www.cafeboy.org/privacy.html
Stödda Språk en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}