GitLab Web Debugger

Allows easy debugging of GitLab.com (and other official GitLab instances)

¿Qué es GitLab Web Debugger?

GitLab Web Debugger es una extensión de Chrome desarrollada por Hendrik 'T4cC0re' Meyer, y su función principal es "Allows easy debugging of GitLab.com (and other official GitLab instances)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión GitLab Web Debugger

Descarga archivos de extensión GitLab Web Debugger 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

                        Note: This is a side-project of a GitLab former employee, not an official GitLab product.

This chrome extension is only active on official GitLab instances. That means https://gitlab.com and other instances used internally at GitLab.

It aids developers, engineers and customers in identifying the root cause of a page load error by extracting the correlation ID of a request.

This correlation ID can help us, when you as a customer provide this ID when reporting an issue. The data behind that ID can only be seen by GitLab employees.

This extension cannot access any data not on GitLab domains.                    

Información Básica de la Extensión

Nombre GitLab Web Debugger GitLab Web Debugger
ID pjpihpogiidfbgdbmkmmhileaijeakan
URL Oficial https://chromewebstore.google.com/detail/gitlab-web-debugger/pjpihpogiidfbgdbmkmmhileaijeakan
Descripción Allows easy debugging of GitLab.com (and other official GitLab instances)
Tamaño del Archivo 51.38 KB
Cantidad de Instalaciones 76
Versión Actual 1.3.2
Última Actualización 2023-06-10
Fecha de Publicación 2019-10-18
Desarrollador Hendrik 'T4cC0re' Meyer
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://gitlab.com/T4cC0re/gitlab-web-debugger
URL de la Página de Ayuda https://gitlab.com/T4cC0re/gitlab-web-debugger/-/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab Web Debugger",
    "version": "1.3.2",
    "manifest_version": 2,
    "description": "Allows easy debugging of GitLab.com (and other official GitLab instances)",
    "homepage_url": "https:\/\/gitlab.com\/T4cC0re\/gitlab-web-debugger",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Show GitLab debug information",
        "default_popup": "src\/pageaction.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "clipboardWrite",
        "webRequest",
        "https:\/\/gitlab.com\/",
        "https:\/\/*.gitlab.com\/",
        "https:\/\/*.gitlab.net\/",
        "https:\/\/*.gitlab.org\/"
    ]
}