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