Gitlab Clipboard Extension
Copy well-formatted Gitlab links
Wat is Gitlab Clipboard Extension?
Gitlab Clipboard Extension is een Chrome-extensie ontwikkeld door Maxim Martynov, en de belangrijkste functie is "Copy well-formatted Gitlab links".
Extensie Screenshots
Download het CRX-bestand van de extensie Gitlab Clipboard Extension
Download Gitlab Clipboard Extension-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
Features:
- Copy well-formatted description of Gitlab task
- Copy well-formatted description of merge request
- Multiple selection of tasks and MR (press Cmd or Ctrl to select several tasks)
To apply formatting in the Slack app press: Cmd + Shift + F Basisinformatie over de Extensie
| Naam | |
| ID | hjepaojhpngilapankhoihbnadgndpgh |
| Officiële URL | https://chromewebstore.google.com/detail/gitlab-clipboard-extensio/hjepaojhpngilapankhoihbnadgndpgh |
| Beschrijving | Copy well-formatted Gitlab links |
| Bestandsgrootte | 27.72 KB |
| Aantal Installaties | 102 |
| Huidige Versie | 1.2.7 |
| Laatst Bijgewerkt | 2022-05-13 |
| Publicatiedatum | 2019-10-31 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Maxim Martynov |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Gitlab Clipboard Extension",
"version": "1.2.7",
"action": {
"default_icon": {
"16": "images\/logo16.png",
"24": "images\/logo24.png",
"32": "images\/logo32.png"
},
"default_title": "Gitlab Clipboard Extension"
},
"description": "Copy well-formatted Gitlab links",
"permissions": [
"clipboardWrite"
],
"host_permissions": [
"http:\/\/gitlab.com\/*",
"https:\/\/gitlab.com\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/gitlab.com\/*",
"https:\/\/gitlab.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/copy.svg",
"images\/copied.svg"
],
"matches": [
"http:\/\/gitlab.com\/*",
"https:\/\/gitlab.com\/*"
]
},
{
"resources": [
"content.js"
],
"matches": [
"http:\/\/gitlab.com\/*",
"https:\/\/gitlab.com\/*"
]
}
]
} | |