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 |
公式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 |
Eメール | [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\/*" ] } ] } |