Promise Formatter

Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!

什麼是Promise Formatter?

Promise Formatter是由remhume開發的Chrome擴展程式,該擴展的主要功能是“Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!”。

擴展截圖

screenshot

下載Promise Formatter擴展crx文件

下載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
官方網址 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"
    ]
}