Gitlab Clipboard Extension

Copy well-formatted Gitlab links

什么是Gitlab Clipboard Extension?

Gitlab Clipboard Extension是由Maxim Martynov开发的Chrome扩展程序,该扩展的主要功能是“Copy well-formatted Gitlab links”。

扩展截图

screenshot

下载Gitlab Clipboard Extension扩展crx文件

下载Gitlab Clipboard Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Gitlab Clipboard Extension Gitlab Clipboard Extension
ID hjepaojhpngilapankhoihbnadgndpgh
官方URL https://chromewebstore.google.com/detail/gitlab-clipboard-extensio/hjepaojhpngilapankhoihbnadgndpgh
简介 Copy well-formatted Gitlab links
文件大小 27.72 KB
安装次数 102
当前版本 1.2.7
更新时间 2022-05-13
上架时间 2019-10-31
评分 5.00/5 共2次评分
开发者 Maxim Martynov
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/*"
            ]
        }
    ]
}