JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

What is JIRA Watcher?

JIRA Watcher is a Chrome extension developed by Andrei Georgescu, and its main feature is "Receive notifications about new items on JIRA sites you visit.".

Extension Screenshots

screenshot

Download JIRA Watcher Extension CRX File

Download JIRA Watcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
Official URL https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Description Receive notifications about new items on JIRA sites you visit.
File Size 13.84 KB
Installation Count 270
Current Version 0.2.1
Last Updated 2016-08-30
Publish Date 2016-08-30
Rating 5.00/5 Total 3 Ratings
Developer Andrei Georgescu
Email [email protected]
Payment Type free
Supported Languages 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",
        ""
    ]
}