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
公式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"
    ]
}