Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Apa itu Promise Formatter?
Promise Formatter adalah ekstensi Chrome yang dikembangkan oleh remhume, dan fitur utamanya adalah "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Promise Formatter
Unduh file ekstensi Promise Formatter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
URL Resmi | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Deskripsi | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
Ukuran File | 50.46 KB |
Jumlah Instalasi | 161 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2017-03-08 |
Tanggal Publikasi | 2017-03-08 |
Pengembang | remhume |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |