Promise Formatter
Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Τι είναι το Promise Formatter;
Το Promise Formatter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον remhume, και η κύρια λειτουργία του είναι "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Promise Formatter
Λήψη αρχείων επέκτασης Promise Formatter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Promise Formatter |
ID | abodlhfjbnnfjohlihnhcahonkbeciei |
Επίσημο URL | https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei |
Περιγραφή | Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support! |
Μέγεθος Αρχείου | 50.46 KB |
Αριθμός Εγκαταστάσεων | 161 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2017-03-08 |
Ημερομηνία Δημοσίευσης | 2017-03-08 |
Προγραμματιστής | remhume |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |