GitHub Red Alert

Changes the notification icon to red if you have participating notifications

What is GitHub Red Alert?

GitHub Red Alert is a Chrome extension developed by bitoiu, and its main feature is "Changes the notification icon to red if you have participating notifications".

Download GitHub Red Alert Extension CRX File

Download GitHub Red Alert extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
Official URL https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Description Changes the notification icon to red if you have participating notifications
File Size 2.98 MB
Installation Count 18
Current Version 0.11
Last Updated 2015-12-10
Publish Date 2015-12-10
Developer bitoiu
Payment Type free
Extension Website https://github.com/bitoiu/github-red-alert
Help Page URL https://github.com/bitoiu/github-red-alert/issues
Supported Languages 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
    }
}