JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

Was ist JIRA Watcher?

JIRA Watcher ist eine Chrome-Erweiterung, die von Andrei Georgescu entwickelt wurde, und ihr Hauptmerkmal ist "Receive notifications about new items on JIRA sites you visit.".

Erweiterungsscreenshots

screenshot

JIRA Watcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie JIRA Watcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
Offizielle URL https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Beschreibung Receive notifications about new items on JIRA sites you visit.
Dateigröße 13.84 KB
Installationsanzahl 270
Aktuelle Version 0.2.1
Letztes Update 2016-08-30
Veröffentlichungsdatum 2016-08-30
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Andrei Georgescu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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",
        ""
    ]
}