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" ] } |