GitHub Red Alert

Changes the notification icon to red if you have participating notifications

GitHub Red Alert là gì?

GitHub Red Alert là một tiện ích mở rộng Chrome được phát triển bởi bitoiu, và tính năng chính của nó là "Changes the notification icon to red if you have participating notifications".

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

Tải xuống các tệp mở rộng GitHub Red Alert 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

                        As a GitHub user I pay very close attention to the Participating notification, i.e. the notifications you get from participating on a thread or being directly mentioned by others (by handle or team). Unfortunately just by looking at the notification bell, there's no way to distinguish if the notifications are participating or generally unread. Since I don't follow generic Unread notifications as closely as I do the Participating ones, I decided to augment the UI to distinguish the two.                    

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

Tên GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
URL Chính Thức https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Mô tả Changes the notification icon to red if you have participating notifications
Kích Thước Tệp 2.98 MB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2015-12-10
Ngày Phát Hành 2015-12-10
Nhà Phát Triển bitoiu
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bitoiu/github-red-alert
URL Trang Trợ Giúp https://github.com/bitoiu/github-red-alert/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Red Alert",
    "version": "0.11",
    "description": "Changes the notification icon to red if you have participating notifications",
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/jquery\/dist\/jquery.js",
                "dist\/script.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "manifest_version": 2,
    "options_page": "dist\/options.html",
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": true
    }
}