Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
Immutable.js Object Formatterとは何ですか?
Immutable.js Object FormatterはMatt Zeunertによって開発されたChromeの拡張機能で、その主な機能は「Makes Immutable JS objects more readable when they are logged to the console.」です。
拡張機能のスクリーンショット
Immutable.js Object Formatter拡張機能のCRXファイルをダウンロード
Immutable.js Object Formatter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Transforms logged Immutable JS objects into a more readable format. To use the extension you need to "Enable Custom Formatters" in the Chrome DevTools settings. Based on Immutable DevTools: https://github.com/andrewdavey/immutable-devtools Source Code: https://github.com/mattzeunert/immutable-object-formatter-extension
拡張機能の基本情報
名前 | Immutable.js Object Formatter |
ID | hgldghadipiblonfkkicmgcbbijnpeog |
公式URL | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog |
説明 | Makes Immutable JS objects more readable when they are logged to the console. |
ファイルサイズ | 43.46 KB |
インストール数 | 7,573 |
現在のバージョン | 1.9.3 |
最終更新日 | 2020-04-20 |
公開日 | 2020-04-15 |
評価 | 4.91/5 合計 33 レビュー |
開発者 | Matt Zeunert |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mattzeunert/immutable-object-formatter-extension |
ヘルプページのURL | https://github.com/mattzeunert/immutable-object-formatter-extension/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immutable.js Object Formatter", "short_name": "Immutable.js Object Formatter", "description": "Makes Immutable JS objects more readable when they are logged to the console.", "version": "1.9.3", "manifest_version": 2, "minimum_chrome_version": "48.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_start" } ], "devtools_page": "devtool.html", "permissions": [ "http:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ "bundle.js" ] } |