Promise Formatter

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

¿Qué es Promise Formatter?

Promise Formatter es una extensión de Chrome desarrollada por remhume, y su función principal es "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Promise Formatter

Descarga archivos de extensión Promise Formatter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Promise Formatter Promise Formatter
ID abodlhfjbnnfjohlihnhcahonkbeciei
URL Oficial https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei
Descripción Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Tamaño del Archivo 50.46 KB
Cantidad de Instalaciones 161
Versión Actual 0.1
Última Actualización 2017-03-08
Fecha de Publicación 2017-03-08
Desarrollador remhume
Tipo de Pago free
Idiomas Soportados 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"
    ]
}