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開發的Chrome擴展程式,該擴展的主要功能是“This extension shows unscrambled stack traces in case map files available for JS files on the page”。
擴展截圖
下載Unscramble stack trace擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | hcgpjaopokimlhhkmjpbimmcjdkdoini |
官方網址 | 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": [ "*:\/\/*\/*" ] } |