Gitlab Clipboard Extension

Copy well-formatted Gitlab links

Gitlab Clipboard Extension là gì?

Gitlab Clipboard Extension là một tiện ích mở rộng Chrome được phát triển bởi Maxim Martynov, và tính năng chính của nó là "Copy well-formatted Gitlab links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gitlab Clipboard Extension

Tải xuống các tệp mở rộng Gitlab Clipboard Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gitlab Clipboard Extension Gitlab Clipboard Extension
ID hjepaojhpngilapankhoihbnadgndpgh
URL Chính Thức https://chromewebstore.google.com/detail/gitlab-clipboard-extensio/hjepaojhpngilapankhoihbnadgndpgh
Mô tả Copy well-formatted Gitlab links
Kích Thước Tệp 27.72 KB
Số Lần Cài Đặt 102
Phiên Bản Hiện Tại 1.2.7
Cập Nhật Lần Cuối 2022-05-13
Ngày Phát Hành 2019-10-31
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Maxim Martynov
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}