JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

什么是JIRA Watcher?

JIRA Watcher是由Andrei Georgescu开发的Chrome扩展程序,该扩展的主要功能是“Receive notifications about new items on JIRA sites you visit.”。

扩展截图

screenshot

下载JIRA Watcher扩展crx文件

下载JIRA Watcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
官方URL https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
简介 Receive notifications about new items on JIRA sites you visit.
文件大小 13.84 KB
安装次数 270
当前版本 0.2.1
更新时间 2016-08-30
上架时间 2016-08-30
评分 5.00/5 共3次评分
开发者 Andrei Georgescu
电子邮箱 [email protected]
付费类型 free
支持的语言 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",
        ""
    ]
}