source-map

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

Wat is source-map?

source-map is een Chrome-extensie ontwikkeld door personalshao, en de belangrijkste functie is "使用sourcemap反解选中错误栈信息".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie source-map

Download source-map-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam source-map source-map
ID bgeaeknaoamgljjbckgjkmkelcmpkobk
Officiële URL https://chromewebstore.google.com/detail/source-map/bgeaeknaoamgljjbckgjkmkelcmpkobk
Beschrijving 使用sourcemap反解选中错误栈信息
Bestandsgrootte 373 KB
Aantal Installaties 509
Huidige Versie 1.0.1
Laatst Bijgewerkt 2020-04-16
Publicatiedatum 2020-04-12
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar personalshao
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}