Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Co je Promise Formatter?
Promise Formatter je rozšíření Chrome vyvinuté remhume, a jeho hlavní funkcí je „Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Promise Formatter
Stáhněte si soubory rozšíření Promise Formatter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
Oficiální URL | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Popis | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
Velikost souboru | 50.46 KB |
Počet instalací | 161 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2017-03-08 |
Datum Vydání | 2017-03-08 |
Vývojář | remhume |
Typ Platby | free |
Podporované Jazyky | 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" ] } |