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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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": [ "*:\/\/*\/*" ] } |