GitLab Web Debugger
Allows easy debugging of GitLab.com (and other official GitLab instances)
Qu'est-ce que GitLab Web Debugger ?
GitLab Web Debugger est une extension Chrome développée par Hendrik 'T4cC0re' Meyer, et sa fonction principale est "Allows easy debugging of GitLab.com (and other official GitLab instances)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitLab Web Debugger
Téléchargez les fichiers d'extension GitLab Web Debugger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitLab Web Debugger |
ID | pjpihpogiidfbgdbmkmmhileaijeakan |
URL Officiel | https://chromewebstore.google.com/detail/gitlab-web-debugger/pjpihpogiidfbgdbmkmmhileaijeakan |
Description | Allows easy debugging of GitLab.com (and other official GitLab instances) |
Taille du Fichier | 51.38 KB |
Nombre d'Installations | 76 |
Version Actuelle | 1.3.2 |
Dernière Mise à Jour | 2023-06-10 |
Date de Publication | 2019-10-18 |
Développeur | Hendrik 'T4cC0re' Meyer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gitlab.com/T4cC0re/gitlab-web-debugger |
URL de la Page d'Aide | https://gitlab.com/T4cC0re/gitlab-web-debugger/-/issues |
Langues Prises en Charge | 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\/" ] } |