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!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}