JIRA ShortCut
Copy to clip board jira issue as 'CMD-999: Description'
什麼是JIRA ShortCut?
JIRA ShortCut是由mshytikov開發的Chrome擴展程式,該擴展的主要功能是“Copy to clip board jira issue as 'CMD-999: Description'”。
擴展截圖
下載JIRA ShortCut擴展crx文件
下載JIRA ShortCut擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Just open your jira ticket and you will see an icon in the address bar, just click on it and text will be copied to your clip board, Want keyboard shortcut? Then use on Windows: Ctrl+J on Mac: Cmd+J, or choose your own in chrome://extensions/ *** Setup *** Before you start you need to add at least one rule in the options: 1. Open options page, chrome-extension://kjofpimpbjninggehnclcgkgniacejha/options.html 2. Click 'Add rule' 3. Click 'Save' 4. Open 'https://issues.apache.org/jira/browse/HADOOP-3629' 5. You should see the icon in the address bar. You also can use this extension with other sites, but you need to configure it. In options you can specify: 1. when to activate the extension - "url pattern" field. 2. what should be copied from the page title - 'tittle patter' and 'out pattern' fields. Example - Github pull requests: Example page with url https://github.com/rails/rails/pull/10676 and title "Add test to counter cache test.rb by tkhr · Pull Request #10676 · rails/rails" Configuration for this page: "url pattern": github.com.*/pull/ 'title pattern": (.*)(· Pull Request #)(\d+).* "out pattern": #$3 $1 Text will be copied to clip board: #10676 Add test to counter cache test.rb by tkhr
擴展基本資訊
名稱 | JIRA ShortCut |
ID | kjofpimpbjninggehnclcgkgniacejha |
官方網址 | https://chromewebstore.google.com/detail/jira-shortcut/kjofpimpbjninggehnclcgkgniacejha |
簡介 | Copy to clip board jira issue as 'CMD-999: Description' |
檔案大小 | 9.78 KB |
安裝次數 | 4,129 |
目前版本 | 6.2.2 |
更新時間 | 2022-02-18 |
上架時間 | 2019-06-05 |
評分 | 4.57/5 共 35 次評分 |
開發者 | mshytikov |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/mshytikov/jira-shortcut |
說明頁面URL | https://github.com/mshytikov/jira-shortcut/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JIRA ShortCut", "version": "6.2.2", "manifest_version": 2, "description": "Copy to clip board jira issue as 'CMD-999: Description'", "background": { "scripts": [ "js\/config.js", "js\/bg.js" ] }, "permissions": [ "tabs", "background", "clipboardWrite", "storage" ], "page_action": { "default_icon": "icon.png", "default_title": "Copy", "default_popup": "popup.html" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+J" } } }, "options_page": "options.html" } |