Jira Change Notifier
Adds a notifcation to the page when a Jira issue you are viewing has been altered
O que é Jira Change Notifier?
Jira Change Notifier é uma extensão do Chrome desenvolvida por fooo, e sua principal característica é "Adds a notifcation to the page when a Jira issue you are viewing has been altered".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Jira Change Notifier
Baixe arquivos de extensão Jira Change Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | Jira Change Notifier |
ID | dbhgehojincjjlajpmdjihmldkmboanm |
URL Oficial | https://chromewebstore.google.com/detail/jira-change-notifier/dbhgehojincjjlajpmdjihmldkmboanm |
Descrição | Adds a notifcation to the page when a Jira issue you are viewing has been altered |
Tamanho do Arquivo | 33.74 KB |
Contagem de Instalações | 14 |
Versão Atual | 2.2.1 |
Última Atualização | 2019-08-17 |
Data de Publicação | 2019-08-11 |
Desenvolvedor | fooo |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |