Gitlab Macros
Gitlab MRs made easier
Wat is Gitlab Macros?
Gitlab Macros is een Chrome-extensie ontwikkeld door devxmofficial, en de belangrijkste functie is "Gitlab MRs made easier".
Extensie Screenshots
Download het CRX-bestand van de extensie Gitlab Macros
Download Gitlab Macros-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | goghimbmkoilbmomgaflelnikefdondh |
| Officiële URL | https://chromewebstore.google.com/detail/gitlab-macros/goghimbmkoilbmomgaflelnikefdondh |
| Beschrijving | Gitlab MRs made easier |
| Bestandsgrootte | 273 KB |
| Aantal Installaties | 188 |
| Huidige Versie | 1.0.2 |
| Laatst Bijgewerkt | 2023-07-04 |
| Publicatiedatum | 2021-08-25 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | devxmofficial |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://www.sprinklr.com/privacy |
| Ondersteunde Talen | 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"
]
} | |