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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } |