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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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