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 |
官方網址 | 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" ] } |