JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

Cos'è JIRA Watcher?

JIRA Watcher è un'estensione di Chrome sviluppata da Andrei Georgescu, e la sua funzione principale è "Receive notifications about new items on JIRA sites you visit.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JIRA Watcher

Scarica i file di estensione JIRA Watcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
URL Ufficiale https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Descrizione Receive notifications about new items on JIRA sites you visit.
Dimensione del File 13.84 KB
Conteggio Installazioni 270
Versione Corrente 0.2.1
Ultimo Aggiornamento 2016-08-30
Data di Pubblicazione 2016-08-30
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Andrei Georgescu
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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",
        ""
    ]
}