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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย v.zapolskydovnar และคุณลักษณะหลักของมันคือ "This extension shows unscrambled stack traces in case map files available for JS files on the page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unscramble stack trace

ดาวน์โหลดไฟล์ส่วนขยาย Unscramble stack trace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
        "*:\/\/*\/*"
    ]
}