Promise Formatter

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

O que é Promise Formatter?

Promise Formatter é uma extensão do Chrome desenvolvida por remhume, e sua principal característica é "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Promise Formatter

Baixe arquivos de extensão Promise Formatter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Promise Formatter Promise Formatter
ID abodlhfjbnnfjohlihnhcahonkbeciei
URL Oficial https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei
Descrição Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Tamanho do Arquivo 50.46 KB
Contagem de Instalações 161
Versão Atual 0.1
Última Atualização 2017-03-08
Data de Publicação 2017-03-08
Desenvolvedor remhume
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}