Unscramble stack trace

This extension shows unscrambled stack traces in case map files available for JS files on the page

Cos'è Unscramble stack trace?

Unscramble stack trace è un'estensione di Chrome sviluppata da v.zapolskydovnar, e la sua funzione principale è "This extension shows unscrambled stack traces in case map files available for JS files on the page".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Unscramble stack trace

Scarica i file di estensione Unscramble stack trace in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extension allows to unscramble (un-uglify) javascript stack traces. Useful if you're developing web applications and need to see what went wrong in live environment.
Options:
1. Select stack trace and click Unscramble context menu.
2. Click on the icon and paste stack trace to the first field and click "unscramble"
Unscrambling is possible only if .map files exist for files in stack trace. Otherwise unsrambling won't lead to more readable results.

v1.1 changes
-- fixed issue when one line with unreachable URL (404/401/500 etc) was breaking the whole unscramble

v1.2 changes
-- removed tabs permission based on `Purple Potassium`

v2.0 changes
-- upgraded manifest to version 3
-- included possibility to replace domains/origins, in case map files are hosted under different domain

v2.1 changes
-- fixed broken styles
-- fixed issue when crashing due to no domains specified

v2.2 changes
-- support firefox-formatted stack traces                    

Informazioni di Base sull'Estensione

Nome Unscramble stack trace Unscramble stack trace
ID hcgpjaopokimlhhkmjpbimmcjdkdoini
URL Ufficiale https://chromewebstore.google.com/detail/unscramble-stack-trace/hcgpjaopokimlhhkmjpbimmcjdkdoini
Descrizione This extension shows unscrambled stack traces in case map files available for JS files on the page
Dimensione del File 102 KB
Conteggio Installazioni 44
Versione Corrente 2.2
Ultimo Aggiornamento 2024-01-12
Data di Pubblicazione 2019-03-08
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore v.zapolskydovnar
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/vadzappa/unscrumble-stacktrace
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Unscramble stack trace",
    "description": "This extension shows unscrambled stack traces in case map files available for JS files on the page",
    "version": "2.2",
    "action": {
        "default_icon": {
            "16": "icon-bitty.png"
        }
    },
    "icons": {
        "16": "icon-bitty.png"
    },
    "background": {
        "service_worker": "js\/context.js"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}