Copy JIRA ID
Copies JIRA ID.
Copy JIRA ID란 무엇입니까?
Copy JIRA ID은(는) https://adesh.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies JIRA ID."입니다.
확장 프로그램 스크린샷
Copy JIRA ID 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
TL;DR This extension adds a 'Copy JIRA ID' button (to copy the JIRA ID of course XD) Atlassian JIRA does not have an easy way to copy the JIRA ID. It was easier in old UX, but with the new UX, a lot of garbage is copied as well. They have a copy link button, but that wasn't really useful for me. I wrote this extension out of frustration, which adds a standalone button next to the JIRA ID, to save you from the hassle. Feel free to give it a try. I try my best to keep it updated to latest and also support old versions of JIRA. In case it does not work for you create an issue at https://github.com/AdeshAtole/copy-jira-id/issues/new OR drop a mail
확장 프로그램 기본 정보
이름 | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
공식 URL | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
설명 | Copies JIRA ID. |
파일 크기 | 9 KB |
설치 횟수 | 65 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2021-11-16 |
출시 날짜 | 2020-05-19 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | https://adesh.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/AdeshAtole/copy-jira-id |
도움말 페이지 URL | https://github.com/AdeshAtole/copy-jira-id |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy JIRA ID", "version": "0.1.6", "description": "Copies JIRA ID.", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.jira.com\/browse\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "icons": { "128": "icon_128.png" } } |