Jira Favorites
Add Jira issues to favorites and sync among your devices.
Jira Favorites란 무엇입니까?
Jira Favorites은(는) Git Cat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Jira issues to favorites and sync among your devices."입니다.
확장 프로그램 스크린샷
Jira Favorites 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
After installing this extension, there will be a star button in your Jira item page (see screenshots). Click the star button to favorite or unfavorite it. You can also use shortcut "Alt + Shift + f" to star/unstar. See the favorites list by clicking the star icon from browser's extension list.
확장 프로그램 기본 정보
이름 | Jira Favorites |
ID | ichkpfkanonmdnheglakiapmjmjhpmme |
공식 URL | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
설명 | Add Jira issues to favorites and sync among your devices. |
파일 크기 | 284 KB |
설치 횟수 | 164 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2024-02-26 |
출시 날짜 | 2020-05-04 |
개발자 | Git Cat |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/TechStark/jira-favorites-extension |
도움말 페이지 URL | https://github.com/TechStark/jira-favorites-extension/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Favorites", "version": "0.0.8", "manifest_version": 3, "description": "Add Jira issues to favorites and sync among your devices.", "icons": { "128": "icons\/icon-128.png", "48": "icons\/icon-48.png", "16": "icons\/icon-16.png" }, "action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png" } }, "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/browse\/*" ], "match_about_blank": true, "all_frames": true, "run_at": "document_idle", "js": [ "content-script.bundle.js" ] } ], "permissions": [ "storage" ] } |