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文件
下载Jira Change Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |