Stack Trace Linkifier

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

¿Qué es Stack Trace Linkifier?

Stack Trace Linkifier es una extensión de Chrome desarrollada por Unknown, y su función principal es "Turn stack frames in JavaScript stack traces into links to the source.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Stack Trace Linkifier

Descarga archivos de extensión Stack Trace Linkifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Stack Trace Linkifier Stack Trace Linkifier
ID mafpielkiomgfjolcbikogcpnnjjfdad
URL Oficial https://chromewebstore.google.com/detail/stack-trace-linkifier/mafpielkiomgfjolcbikogcpnnjjfdad
Descripción Turn stack frames in JavaScript stack traces into links to the source.
Tamaño del Archivo 14.88 KB
Cantidad de Instalaciones 32
Versión Actual 0.1.0
Última Actualización 2018-01-09
Fecha de Publicación 2018-01-08
Desarrollador Unknown
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lewistg/stack-trace-linkifier
Idiomas Soportados 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"
}