Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Cos'è Promise Formatter?
Promise Formatter è un'estensione di Chrome sviluppata da remhume, e la sua funzione principale è "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Promise Formatter
Scarica i file di estensione Promise Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
URL Ufficiale | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Descrizione | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
Dimensione del File | 50.46 KB |
Conteggio Installazioni | 161 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2017-03-08 |
Data di Pubblicazione | 2017-03-08 |
Sviluppatore | remhume |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |