jira-helper
jira-helper
jira-helper란 무엇입니까?
jira-helper은(는) pavel.power에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "jira-helper"입니다.
확장 프로그램 스크린샷
jira-helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Jira Helper - adds visual elements for swimlanes, a button for adding a task description template. The latest version added experimental functionality: 1. Limit the number of tasks for swimlanes* 2. Do not consider Expedite swimline WIP limits 3. Limiting the number of tasks to several columns 4. Personal WIP-limit 5. WIP-limit for Cells (intersection of Swimlanes & Columns) 6. WIP-limit for fields values (on Kanban board) 7. WIP-limit for fields values, with count value of field (on Kanban board) 8. WIP-limit for fields values, with sum numbers of field, for sample Story Points (on Kanban board) 9. Use your SLA line (with percentile) in the Control Chart panel 10. Show flag on issue panel 11. Story Point Ruler for Control Chart 12. Blurring of secret data 13. Wip-limits for visible on card custom field *we do not take into account the restrictions on a swimlane for closed tasks
확장 프로그램 기본 정보
이름 | jira-helper |
ID | egmbomekcmpieccamghfgjgnlllgbgdl |
공식 URL | https://chromewebstore.google.com/detail/jira-helper/egmbomekcmpieccamghfgjgnlllgbgdl |
설명 | jira-helper |
파일 크기 | 266 KB |
설치 횟수 | 7,448 |
현재 버전 | 2.22.7 |
최근 업데이트 | 2024-03-04 |
출시 날짜 | 2020-06-29 |
평점 | 5.00/5 총 14 개의 평점 |
개발자 | pavel.power |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://tinkoff.github.io/jira-helper/ |
도움말 페이지 URL | https://github.com/pavelpower/jira-helper |
개인정보 보호 정책 페이지 URL | https://github.com/pavelpower/jira-helper/blob/master/PRIVACY_POLICY.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "jira-helper", "short_name": "jira-helper", "version": "2.22.7", "author": "[email protected]", "description": "jira-helper", "icons": { "16": "src\/jira_helper_16x16.png", "32": "src\/jira_helper_32x32.png", "48": "src\/jira_helper_48x48.png", "64": "src\/jira_helper_64x64.png", "128": "src\/jira_helper_128x128.png" }, "minimum_chrome_version": "88", "action": { "default_icon": { "16": "src\/jira_helper_16x16.png", "32": "src\/jira_helper_32x32.png", "48": "src\/jira_helper_48x48.png", "64": "src\/jira_helper_64x64.png", "128": "src\/jira_helper_128x128.png" }, "default_title": "Jira Helper" }, "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "img\/*" ], "use_dynamic_url": true } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "src\/blurSensitive.css" ] } ], "permissions": [ "storage", "tabs", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |