GitHub Red Alert

Changes the notification icon to red if you have participating notifications

GitHub Red Alertとは何ですか?

GitHub Red Alertはbitoiuによって開発されたChromeの拡張機能で、その主な機能は「Changes the notification icon to red if you have participating notifications」です。

GitHub Red Alert拡張機能のCRXファイルをダウンロード

GitHub Red Alert拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
公式URL https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
説明 Changes the notification icon to red if you have participating notifications
ファイルサイズ 2.98 MB
インストール数 18
現在のバージョン 0.11
最終更新日 2015-12-10
公開日 2015-12-10
開発者 bitoiu
支払い方法 free
拡張機能のウェブサイト https://github.com/bitoiu/github-red-alert
ヘルプページのURL https://github.com/bitoiu/github-red-alert/issues
対応言語 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
    }
}