Basic JSON Formatter
Adds a page action to pretty-print JSON
Basic JSON Formatterとは何ですか?
Basic JSON FormatterはDr. McKayによって開発されたChromeの拡張機能で、その主な機能は「Adds a page action to pretty-print JSON」です。
拡張機能のスクリーンショット
Basic JSON Formatter拡張機能のCRXファイルをダウンロード
Basic JSON Formatter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
| 公式URL | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
| 説明 | Adds a page action to pretty-print JSON |
| ファイルサイズ | 222 KB |
| インストール数 | 483 |
| 現在のバージョン | 3.0.0 |
| 最終更新日 | 2022-07-07 |
| 公開日 | 2021-05-27 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Dr. McKay |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/DoctorMcKay/firefox-json-formatter |
| ヘルプページのURL | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
| 対応言語 | 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
}
} | |