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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |