Promise Formatter

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

Vad är Promise Formatter?

Promise Formatter är en Chrome-tillägg utvecklad av remhume, och dess huvudfunktion är "Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!".

Tilläggsskärmbilder

screenshot

Ladda ner Promise Formatter-förlängningens CRX-fil

Ladda ner Promise Formatter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Promise Formatter Promise Formatter
ID abodlhfjbnnfjohlihnhcahonkbeciei
Officiell webbadress https://chromewebstore.google.com/detail/promise-formatter/abodlhfjbnnfjohlihnhcahonkbeciei
Beskrivning Transforms Promises to a more readable format when they are logged to the console. Currently only Bluebird support!
Filstorlek 50.46 KB
Antal Installationer 161
Aktuell Version 0.1
Senast Uppdaterad 2017-03-08
Publiceringsdatum 2017-03-08
Utvecklare remhume
Betalningssätt free
Stödda Språk 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"
    ]
}