JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

JIRA Watcher là gì?

JIRA Watcher là một tiện ích mở rộng Chrome được phát triển bởi Andrei Georgescu, và tính năng chính của nó là "Receive notifications about new items on JIRA sites you visit.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng JIRA Watcher

Tải xuống các tệp mở rộng JIRA Watcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JIRA Watcher JIRA Watcher
ID bapeiigfpooiclmpeiahdcbndekahndl
URL Chính Thức https://chromewebstore.google.com/detail/jira-watcher/bapeiigfpooiclmpeiahdcbndekahndl
Mô tả Receive notifications about new items on JIRA sites you visit.
Kích Thước Tệp 13.84 KB
Số Lần Cài Đặt 270
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2016-08-30
Ngày Phát Hành 2016-08-30
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Andrei Georgescu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}