Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
什么是Promise Formatter?
Promise Formatter是由remhume开发的Chrome扩展程序,该扩展的主要功能是“Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!”。
扩展截图
下载Promise Formatter扩展crx文件
下载Promise Formatter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Transforms Promises to a more readable format when they are logged to the console.
Currently only supports Bluebird Promises.
Fork of the Immutable Object Formatter Extension: https://github.com/mattzeunert/immutable-object-formatter-extension
The Chrome extension will only work if you **enable Custom Formatters** in the DevTools settings. 扩展基本信息
| 名称 | |
| ID | abodlhfjbnnfjohlihnhcahonkbeciei |
| 官方URL | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
| 简介 | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
| 文件大小 | 50.46 KB |
| 安装次数 | 161 |
| 当前版本 | 0.1 |
| 更新时间 | 2017-03-08 |
| 上架时间 | 2017-03-08 |
| 开发者 | remhume |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Promise Formatter",
"short_name": "Promise Formatter",
"description": "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!",
"version": "0.1",
"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"
]
} | |