Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Promise Formatter là gì?
Promise Formatter là một tiện ích mở rộng Chrome được phát triển bởi remhume, và tính năng chính của nó là "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Promise Formatter
Tải xuống các tệp mở rộng Promise Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
URL Chính Thức | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Mô tả | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
Kích Thước Tệp | 50.46 KB |
Số Lần Cài Đặt | 161 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2017-03-08 |
Ngày Phát Hành | 2017-03-08 |
Nhà Phát Triển | remhume |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |