Gitlab Macros
Gitlab MRs made easier
Qu'est-ce que Gitlab Macros ?
Gitlab Macros est une extension Chrome développée par devxmofficial, et sa fonction principale est "Gitlab MRs made easier".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gitlab Macros
Téléchargez les fichiers d'extension Gitlab Macros 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
Manage merge request settings efficiently using macros. A Macro is a pattern of settings. https://youtu.be/AH0qrQPVV6w Gitlab Macro Extension - Auto Applying a Macro while creating an MR https://youtu.be/d5iqX3Mf_VU Gitlab Macro Extension - Creating a Macro and Auto Applying on Approve
Informations de Base sur l'Extension
Nom | Gitlab Macros |
ID | goghimbmkoilbmomgaflelnikefdondh |
URL Officiel | https://chromewebstore.google.com/detail/gitlab-macros/goghimbmkoilbmomgaflelnikefdondh |
Description | Gitlab MRs made easier |
Taille du Fichier | 273 KB |
Nombre d'Installations | 188 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2023-07-04 |
Date de Publication | 2021-08-25 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | devxmofficial |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.sprinklr.com/privacy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gitlab Macros", "description": "Gitlab MRs made easier", "version": "1.0.2", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*\/*\/-\/merge_requests*" ], "run_at": "document_end", "js": [ ".\/static\/js\/content.js" ], "css": [ "content.css" ] } ], "action": { "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "permissions": [ "scripting", "storage", "activeTab", "webNavigation", "browsingData", "declarativeContent" ] } |