Gitlab Clipboard Extension
Copy well-formatted Gitlab links
ما هو Gitlab Clipboard Extension؟
Gitlab Clipboard Extension هو إضافة Chrome تم تطويرها بواسطة Maxim Martynov، والميزة الرئيسية لها هي "Copy well-formatted Gitlab links".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gitlab Clipboard Extension
قم بتنزيل ملفات الامتداد Gitlab Clipboard Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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\/*"
]
}
]
} | |