JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

Vad är JIRA Watcher?

JIRA Watcher är en Chrome-tillägg utvecklad av Andrei Georgescu, och dess huvudfunktion är "Receive notifications about new items on JIRA sites you visit.".

Tilläggsskärmbilder

screenshot

Ladda ner JIRA Watcher-förlängningens CRX-fil

Ladda ner JIRA Watcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
Officiell webbadress https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Beskrivning Receive notifications about new items on JIRA sites you visit.
Filstorlek 13.84 KB
Antal Installationer 270
Aktuell Version 0.2.1
Senast Uppdaterad 2016-08-30
Publiceringsdatum 2016-08-30
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Andrei Georgescu
E-post [email protected]
Betalningssätt free
Stödda Språk 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",
        ""
    ]
}