Gitlab Clipboard Extension

Copy well-formatted Gitlab links

Was ist Gitlab Clipboard Extension?

Gitlab Clipboard Extension ist eine Chrome-Erweiterung, die von Maxim Martynov entwickelt wurde, und ihr Hauptmerkmal ist "Copy well-formatted Gitlab links".

Erweiterungsscreenshots

screenshot

Gitlab Clipboard Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gitlab Clipboard Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Gitlab Clipboard Extension Gitlab Clipboard Extension
ID hjepaojhpngilapankhoihbnadgndpgh
Offizielle URL https://chromewebstore.google.com/detail/gitlab-clipboard-extensio/hjepaojhpngilapankhoihbnadgndpgh
Beschreibung Copy well-formatted Gitlab links
Dateigröße 27.72 KB
Installationsanzahl 102
Aktuelle Version 1.2.7
Letztes Update 2022-05-13
Veröffentlichungsdatum 2019-10-31
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Maxim Martynov
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}