Promise Formatter

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

Was ist Promise Formatter?

Promise Formatter ist eine Chrome-Erweiterung, die von remhume entwickelt wurde, und ihr Hauptmerkmal ist "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".

Erweiterungsscreenshots

screenshot

Promise Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Promise Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Promise Formatter Promise Formatter
ID abodlhfjbnnfjohlihnhcahonkbeciei
Offizielle URL https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei
Beschreibung Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Dateigröße 50.46 KB
Installationsanzahl 161
Aktuelle Version 0.1
Letztes Update 2017-03-08
Veröffentlichungsdatum 2017-03-08
Entwickler remhume
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}