Basic JSON Formatter
Adds a page action to pretty-print JSON
Qu'est-ce que Basic JSON Formatter ?
Basic JSON Formatter est une extension Chrome développée par Dr. McKay, et sa fonction principale est "Adds a page action to pretty-print JSON".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Basic JSON Formatter
Téléchargez les fichiers d'extension Basic JSON Formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
URL Officiel | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
Description | Adds a page action to pretty-print JSON |
Taille du Fichier | 222 KB |
Nombre d'Installations | 483 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2022-07-07 |
Date de Publication | 2021-05-27 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Dr. McKay |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/DoctorMcKay/firefox-json-formatter |
URL de la Page d'Aide | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
Langues Prises en Charge | 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 } } |