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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        ""
    ]
}