Gitlab Clipboard Extension

Copy well-formatted Gitlab links

What is Gitlab Clipboard Extension?

Gitlab Clipboard Extension is a Chrome extension developed by Maxim Martynov, and its main feature is "Copy well-formatted Gitlab links".

Extension Screenshots

screenshot

Download Gitlab Clipboard Extension Extension CRX File

Download Gitlab Clipboard Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Gitlab Clipboard Extension Gitlab Clipboard Extension
ID hjepaojhpngilapankhoihbnadgndpgh
Official URL https://chromewebstore.google.com/detail/gitlab-clipboard-extensio/hjepaojhpngilapankhoihbnadgndpgh
Description Copy well-formatted Gitlab links
File Size 27.72 KB
Installation Count 102
Current Version 1.2.7
Last Updated 2022-05-13
Publish Date 2019-10-31
Rating 5.00/5 Total 2 Ratings
Developer Maxim Martynov
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}