Gitlab Clipboard Extension
Copy well-formatted Gitlab links
什麼是Gitlab Clipboard Extension?
Gitlab Clipboard Extension是由Maxim Martynov開發的Chrome擴展程式,該擴展的主要功能是“Copy well-formatted Gitlab links”。
擴展截圖
下載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 |
ID | hjepaojhpngilapankhoihbnadgndpgh |
官方網址 | 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\/*" ] } ] } |