JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

Co je JIRA Watcher?

JIRA Watcher je rozšíření Chrome vyvinuté Andrei Georgescu, a jeho hlavní funkcí je „Receive notifications about new items on JIRA sites you visit.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření JIRA Watcher

Stáhněte si soubory rozšíření JIRA Watcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
Oficiální URL https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Popis Receive notifications about new items on JIRA sites you visit.
Velikost souboru 13.84 KB
Počet instalací 270
Aktuální Verze 0.2.1
Poslední Aktualizace 2016-08-30
Datum Vydání 2016-08-30
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Andrei Georgescu
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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",
        ""
    ]
}