Stack Trace Linkifier

Turn stack frames in JavaScript stack traces into links to the source.

什么是Stack Trace Linkifier?

Stack Trace Linkifier是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Turn stack frames in JavaScript stack traces into links to the source.”。

扩展截图

下载Stack Trace Linkifier扩展crx文件

下载Stack Trace Linkifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        When the DevTools are open, Stack Trace Linkifier linkifies JavaScript stack traces embedded in web pages. It mimics the way stack traces are linkified in the DevTools console: referenced source files become links, click the link and jump to the source. 

The extension was mainly written as a companion to the Jasmine unit testing framework (https://jasmine.github.io/). Jasmine reports failing tests with an accompanying stack trace. With this extension you can now quickly jump to the test code in the DevTools.                    

扩展基本信息

名称 Stack Trace Linkifier Stack Trace Linkifier
ID mafpielkiomgfjolcbikogcpnnjjfdad
官方URL https://chromewebstore.google.com/detail/stack-trace-linkifier/mafpielkiomgfjolcbikogcpnnjjfdad
简介 Turn stack frames in JavaScript stack traces into links to the source.
文件大小 14.88 KB
安装次数 32
当前版本 0.1.0
更新时间 2018-01-09
上架时间 2018-01-08
开发者 Unknown
付费类型 free
扩展官网 https://github.com/lewistg/stack-trace-linkifier
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stack Trace Linkifier",
    "description": "Turn stack frames in JavaScript stack traces into links to the source.",
    "version": "0.1.0",
    "permissions": [
        "tabs",
        "",
        "webNavigation"
    ],
    "minimum_chrome_version": "10.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": ".\/icons\/icon32.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "devtools_page": "devtools.html"
}