JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

O que é JIRA Watcher?

JIRA Watcher é uma extensão do Chrome desenvolvida por Andrei Georgescu, e sua principal característica é "Receive notifications about new items on JIRA sites you visit.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão JIRA Watcher

Baixe arquivos de extensão JIRA Watcher 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

                        JIRA Watcher helps you be more productive.

It gives you desktop notification when you get new items according to your filters.

When you open a website with JIRA instance, the extension begin to scan for new items. You will not receive double notifications from a single JIRA instance. You can however receive from multiple instances.

Benefits:
 • low resources consumption
 • configurable
 • works for multiple instances opened
 • no impact on JIRA server

JIRA® names and logos are trademarks of Atlassian®.                    

Informações Básicas da Extensão

Nome JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
URL Oficial https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Descrição Receive notifications about new items on JIRA sites you visit.
Tamanho do Arquivo 13.84 KB
Contagem de Instalações 270
Versão Atual 0.2.1
Última Atualização 2016-08-30
Data de Publicação 2016-08-30
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Andrei Georgescu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Watcher",
    "description": "Receive notifications about new items on JIRA sites you visit.",
    "version": "0.2.1",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "storage",
        ""
    ]
}