Basic JSON Formatter
Adds a page action to pretty-print JSON
Hvad er Basic JSON Formatter?
Basic JSON Formatter er en Chrome-udvidelse udviklet af Dr. McKay, og dens hovedfunktion er "Adds a page action to pretty-print JSON".
Udvidelsesskærmbilleder
Download Basic JSON Formatter-udvidelses-CRX-fil
Download Basic JSON Formatter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
Officiel URL | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
Beskrivelse | Adds a page action to pretty-print JSON |
Filstørrelse | 222 KB |
Antal Installationer | 483 |
Nuværende Version | 3.0.0 |
Senest Opdateret | 2022-07-07 |
Udgivelsesdato | 2021-05-27 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Dr. McKay |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/DoctorMcKay/firefox-json-formatter |
Hjælpeside-URL | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
Understøttede Sprog | 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 } } |