Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
What is Promise Formatter?
Promise Formatter is a Chrome extension developed by remhume, and its main feature is "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".
Extension Screenshots
Download Promise Formatter Extension CRX File
Download Promise Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
Official URL | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Description | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
File Size | 50.46 KB |
Installation Count | 161 |
Current Version | 0.1 |
Last Updated | 2017-03-08 |
Publish Date | 2017-03-08 |
Developer | remhume |
Payment Type | free |
Supported Languages | 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" ] } |