Gitlab Clipboard Extension

Copy well-formatted Gitlab links

Gitlab Clipboard Extensionคืออะไร?

Gitlab Clipboard Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Maxim Martynov และคุณลักษณะหลักของมันคือ "Copy well-formatted Gitlab links"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gitlab Clipboard Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}