Stack Trace Linkifier

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

Stack Trace Linkifierคืออะไร?

Stack Trace Linkifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Turn stack frames in JavaScript stack traces into links to the source."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stack Trace Linkifier

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}