JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

JIRA Watcherคืออะไร?

JIRA Watcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrei Georgescu และคุณลักษณะหลักของมันคือ "Receive notifications about new items on JIRA sites you visit."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JIRA Watcher

ดาวน์โหลดไฟล์ส่วนขยาย 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",
        ""
    ]
}