Jira Change Notifier

Adds a notifcation to the page when a Jira issue you are viewing has been altered

Jira Change Notifier là gì?

Jira Change Notifier là một tiện ích mở rộng Chrome được phát triển bởi fooo, và tính năng chính của nó là "Adds a notifcation to the page when a Jira issue you are viewing has been altered".

Ả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 Change Notifier

Tải xuống các tệp mở rộng Jira Change Notifier 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

                        Checks in the background for changes to a Jira issue, and displays a notification when a change is detected or if you have been logged out.

Works when viewing an issue and in the backlog and active sprints list views.

After installing you will need to configure the domain for your jira instance in the extension settings otherwise the extension wont work. Because jira doesn't have a specific domain name the extension needs permission to access to all domains. The extension will only start on domains that have been entered in the settings.

Note: Doesn't currently check issues that are open in a side panel (eg when browsing the backlog with an issue open in the right pane).                    

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

Tên Jira Change Notifier Jira Change Notifier
ID dbhgehojincjjlajpmdjihmldkmboanm
URL Chính Thức https://chromewebstore.google.com/detail/jira-change-notifier/dbhgehojincjjlajpmdjihmldkmboanm
Mô tả Adds a notifcation to the page when a Jira issue you are viewing has been altered
Kích Thước Tệp 33.74 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2019-08-17
Ngày Phát Hành 2019-08-11
Nhà Phát Triển fooo
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 Change Notifier",
    "version": "2.2.1",
    "description": "Adds a notifcation to the page when a Jira issue you are viewing has been altered",
    "author": "[email protected]",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*"
            ],
            "js": [
                "jira-issue-change-notifier.js"
            ],
            "css": [
                "jira-change-notifier.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/secure\/RapidBoard*"
            ],
            "js": [
                "jira-board-change-notifier.js"
            ],
            "css": [
                "jira-change-notifier.css"
            ]
        }
    ]
}