GitHub Red Alert

Changes the notification icon to red if you have participating notifications

Co je GitHub Red Alert?

GitHub Red Alert je rozšíření Chrome vyvinuté bitoiu, a jeho hlavní funkcí je „Changes the notification icon to red if you have participating notifications“.

Stáhnout soubor CRX rozšíření GitHub Red Alert

Stáhněte si soubory rozšíření GitHub Red Alert ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
Oficiální URL https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Popis Changes the notification icon to red if you have participating notifications
Velikost souboru 2.98 MB
Počet instalací 18
Aktuální Verze 0.11
Poslední Aktualizace 2015-12-10
Datum Vydání 2015-12-10
Vývojář bitoiu
Typ Platby free
Webové stránky Rozšíření https://github.com/bitoiu/github-red-alert
URL Stránky Nápovědy https://github.com/bitoiu/github-red-alert/issues
Podporované Jazyky 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
    }
}