GitLab Web Debugger

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

GitLab Web Debugger란 무엇입니까?

GitLab Web Debugger은(는) Hendrik 'T4cC0re' Meyer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows easy debugging of GitLab.com (and other official GitLab instances)"입니다.

확장 프로그램 스크린샷

screenshot

GitLab Web Debugger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 GitLab Web Debugger GitLab Web Debugger
ID pjpihpogiidfbgdbmkmmhileaijeakan
공식 URL https://chromewebstore.google.com/detail/gitlab-web-debugger/pjpihpogiidfbgdbmkmmhileaijeakan
설명 Allows easy debugging of GitLab.com (and other official GitLab instances)
파일 크기 51.38 KB
설치 횟수 76
현재 버전 1.3.2
최근 업데이트 2023-06-10
출시 날짜 2019-10-18
개발자 Hendrik 'T4cC0re' Meyer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/T4cC0re/gitlab-web-debugger
도움말 페이지 URL https://gitlab.com/T4cC0re/gitlab-web-debugger/-/issues
지원되는 언어 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\/"
    ]
}