Jira Filter +
An extension designed to improve the usability of Jira user interface by adding a new filter by users.
Jira Filter +란 무엇입니까?
Jira Filter +은(는) 2pmc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension designed to improve the usability of Jira user interface by adding a new filter by users."입니다.
확장 프로그램 스크린샷
Jira Filter + 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
On a busy jira board, it's quite difficult to see just one users tasks when the team holds a daily scrum meeting.
This extension will improve the usability of Jira's user interface by adding a new "Filter by user" on a Scrum or Kanban board. 확장 프로그램 기본 정보
| 이름 | |
| ID | iojgmhmnbcjbifmppnelcdeobmhdmgdi |
| 공식 URL | https://chrome.google.com/webstore/detail/iojgmhmnbcjbifmppnelcdeobmhdmgdi |
| 설명 | An extension designed to improve the usability of Jira user interface by adding a new filter by users. |
| 파일 크기 | 50.99 KB |
| 설치 횟수 | 10 |
| 현재 버전 | 0.0.9 |
| 최근 업데이트 | 2017-11-01 |
| 출시 날짜 | 2017-11-01 |
| 평점 | 5.00/5 총 1 개의 평점 |
| 개발자 | 2pmc |
| 결제 유형 | free |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.9",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "icons\/icon-16.png",
"128": "icons\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage",
"identity",
"identity.email",
"https:\/\/*\/*\/RapidBoard.jspa*",
"https:\/\/*\/RapidBoard.jspa*",
"https:\/\/www.googleapis.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*\/RapidBoard.jspa*",
"https:\/\/*\/RapidBoard.jspa*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"19": "icons\/icon-19.png",
"38": "icons\/icon-38.png"
},
"default_title": "Jira Filter+"
},
"oauth2": {
"client_id": "463600883660-amp8asj9mp7ckkjva5og6uoc46maadug.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
]
}
} | |