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)”。
擴展截圖
下載GitLab Web Debugger擴展crx文件
下載GitLab Web Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | pjpihpogiidfbgdbmkmmhileaijeakan |
官方網址 | 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\/" ] } |