JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

¿Qué es JIRA Watcher?

JIRA Watcher es una extensión de Chrome desarrollada por Andrei Georgescu, y su función principal es "Receive notifications about new items on JIRA sites you visit.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión JIRA Watcher

Descarga archivos de extensión JIRA Watcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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®.                    

Información Básica de la Extensión

Nombre JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
URL Oficial https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Descripción Receive notifications about new items on JIRA sites you visit.
Tamaño del Archivo 13.84 KB
Cantidad de Instalaciones 270
Versión Actual 0.2.1
Última Actualización 2016-08-30
Fecha de Publicación 2016-08-30
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Andrei Georgescu
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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",
        ""
    ]
}