Stack Trace Linkifier

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

Stack Trace Linkifier là gì?

Stack Trace Linkifier là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Turn stack frames in JavaScript stack traces into links to the source.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Stack Trace Linkifier

Tải xuống các tệp mở rộng Stack Trace Linkifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stack Trace Linkifier Stack Trace Linkifier
ID mafpielkiomgfjolcbikogcpnnjjfdad
URL Chính Thức https://chromewebstore.google.com/detail/stack-trace-linkifier/mafpielkiomgfjolcbikogcpnnjjfdad
Mô tả Turn stack frames in JavaScript stack traces into links to the source.
Kích Thước Tệp 14.88 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2018-01-09
Ngày Phát Hành 2018-01-08
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lewistg/stack-trace-linkifier
Ngôn Ngữ Được Hỗ Trợ 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"
}