Basic JSON Formatter
Adds a page action to pretty-print JSON
Cos'è Basic JSON Formatter?
Basic JSON Formatter è un'estensione di Chrome sviluppata da Dr. McKay, e la sua funzione principale è "Adds a page action to pretty-print JSON".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Basic JSON Formatter
Scarica i file di estensione Basic JSON Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
URL Ufficiale | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
Descrizione | Adds a page action to pretty-print JSON |
Dimensione del File | 222 KB |
Conteggio Installazioni | 483 |
Versione Corrente | 3.0.0 |
Ultimo Aggiornamento | 2022-07-07 |
Data di Pubblicazione | 2021-05-27 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Dr. McKay |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/DoctorMcKay/firefox-json-formatter |
URL della Pagina di Aiuto | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
Lingue Supportate | 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 } } |