Unscramble stack trace

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

Unscramble stack trace क्या है?

Unscramble stack trace v.zapolskydovnar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows unscrambled stack traces in case map files available for JS files on the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Unscramble stack trace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Unscramble stack trace Unscramble stack trace
ID hcgpjaopokimlhhkmjpbimmcjdkdoini
आधिकारिक URL https://chromewebstore.google.com/detail/unscramble-stack-trace/hcgpjaopokimlhhkmjpbimmcjdkdoini
विवरण This extension shows unscrambled stack traces in case map files available for JS files on the page
फ़ाइल का आकार 102 KB
स्थापना संख्या 44
वर्तमान संस्करण 2.2
अंतिम अपडेट 2024-01-12
प्रकाशन तिथि 2019-03-08
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर v.zapolskydovnar
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/vadzappa/unscrumble-stacktrace
समर्थित भाषाएँ 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": [
        "*:\/\/*\/*"
    ]
}