source-map

使用sourcemap反解选中错误栈信息

What is source-map?

source-map is a Chrome extension developed by personalshao, and its main feature is "使用sourcemap反解选中错误栈信息".

Extension Screenshots

screenshot

Download source-map Extension CRX File

Download source-map extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        使用sourcemap反解选中错误栈信息
 · 选中网页中错误栈文字会自动反解并弹出源文件地址及信息
 · 点击右上角图标进入extension首页,支持错误栈反解、js/map路径反解、map文件反解
 · extension首页点击右上角配置按钮支持配置map映射路径等                    

Extension Basic Information

Name source-map source-map
ID bgeaeknaoamgljjbckgjkmkelcmpkobk
Official URL https://chromewebstore.google.com/detail/source-map/bgeaeknaoamgljjbckgjkmkelcmpkobk
Description 使用sourcemap反解选中错误栈信息
File Size 373 KB
Installation Count 509
Current Version 1.0.1
Last Updated 2020-04-16
Publish Date 2020-04-12
Rating 5.00/5 Total 1 Ratings
Developer personalshao
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "source-map",
    "description": "\u4f7f\u7528sourcemap\u53cd\u89e3\u9009\u4e2d\u9519\u8bef\u6808\u4fe1\u606f",
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "source-map"
    },
    "background": {
        "scripts": [
            "static\/source-map.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "static\/sourcemap-extension.css"
            ],
            "js": [
                "static\/jquery.min.js",
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
    "permissions": [
        "storage"
    ]
}