Basic JSON Formatter
Adds a page action to pretty-print JSON
Co to jest Basic JSON Formatter?
Basic JSON Formatter to rozszerzenie Chrome opracowane przez Dr. McKay, a jego główną funkcją jest „Adds a page action to pretty-print JSON”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Basic JSON Formatter
Pobierz pliki rozszerzeń Basic JSON Formatter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
Oficjalny URL | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
Opis | Adds a page action to pretty-print JSON |
Rozmiar pliku | 222 KB |
Liczba instalacji | 483 |
Aktualna Wersja | 3.0.0 |
Ostatnia Aktualizacja | 2022-07-07 |
Data Publikacji | 2021-05-27 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Dr. McKay |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/DoctorMcKay/firefox-json-formatter |
Adres URL Strony Pomocy | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
Obsługiwane Języki | 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 } } |