Gerrit JIRA Link
View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…
Gerrit JIRA Link란 무엇입니까?
Gerrit JIRA Link은(는) Joe Pikowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…"입니다.
확장 프로그램 스크린샷
Gerrit JIRA Link 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will query the Gerrit REST API for changes that have an external tracking link to the Issue ID that you are currently viewing. ( https://gerrit-review.googlesource.com/Documentation/user-search.html#tr ) The Gerrit hostname is configurable from the settings menu of the extension. If changes are returned from the Gerrit query, a badge will be displayed on the extension icon. Clicking the icon will add a native popup to JIRA displaying the details of your linked Gerrit changes. This app does not track or store any personal or sensitive data. Issues can be reported on the Github repo: https://github.com/joepikowski/gerrit-jira-link
확장 프로그램 기본 정보
이름 | Gerrit JIRA Link |
ID | nhndnagpmlfjpkopfkphjlmmmenkload |
공식 URL | https://chromewebstore.google.com/detail/gerrit-jira-link/nhndnagpmlfjpkopfkphjlmmmenkload |
설명 | View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will… |
파일 크기 | 320 KB |
설치 횟수 | 117 |
현재 버전 | 1.2 |
최근 업데이트 | 2022-07-03 |
출시 날짜 | 2022-02-28 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | Joe Pikowski |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/joepikowski/gerrit-jira-link |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gerrit JIRA Link", "version": "1.2", "author": "Joe Pikowski", "manifest_version": 3, "short_name": "Gerrit JIRA Link", "description": "", "icons": { "16": "media\/icon16.png", "48": "media\/icon48.png", "128": "media\/icon128.png" }, "action": [], "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*" ], "css": [ "css\/gerrit-jira-link.css" ], "js": [ "lib\/gerrit-jira-link.js" ] } ], "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "css\/*", "lib\/*", "media\/*" ], "matches": [ "*:\/\/*.atlassian.net\/*" ] } ], "background": { "service_worker": "lib\/background.js" } } |