Jira Change Notifier
Adds a notifcation to the page when a Jira issue you are viewing has been altered
Jira Change Notifier란 무엇입니까?
Jira Change Notifier은(는) fooo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a notifcation to the page when a Jira issue you are viewing has been altered"입니다.
확장 프로그램 스크린샷
Jira Change Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Checks in the background for changes to a Jira issue, and displays a notification when a change is detected or if you have been logged out. Works when viewing an issue and in the backlog and active sprints list views. After installing you will need to configure the domain for your jira instance in the extension settings otherwise the extension wont work. Because jira doesn't have a specific domain name the extension needs permission to access to all domains. The extension will only start on domains that have been entered in the settings. Note: Doesn't currently check issues that are open in a side panel (eg when browsing the backlog with an issue open in the right pane).
확장 프로그램 기본 정보
이름 | Jira Change Notifier |
ID | dbhgehojincjjlajpmdjihmldkmboanm |
공식 URL | https://chromewebstore.google.com/detail/jira-change-notifier/dbhgehojincjjlajpmdjihmldkmboanm |
설명 | Adds a notifcation to the page when a Jira issue you are viewing has been altered |
파일 크기 | 33.74 KB |
설치 횟수 | 14 |
현재 버전 | 2.2.1 |
최근 업데이트 | 2019-08-17 |
출시 날짜 | 2019-08-11 |
개발자 | fooo |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira Change Notifier", "version": "2.2.1", "description": "Adds a notifcation to the page when a Jira issue you are viewing has been altered", "author": "[email protected]", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true, "browser_style": true }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/browse\/*" ], "js": [ "jira-issue-change-notifier.js" ], "css": [ "jira-change-notifier.css" ] }, { "matches": [ "*:\/\/*\/secure\/RapidBoard*" ], "js": [ "jira-board-change-notifier.js" ], "css": [ "jira-change-notifier.css" ] } ] } |