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
官方網址 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"
}