GitHub Red Alert

Changes the notification icon to red if you have participating notifications

Vad är GitHub Red Alert?

GitHub Red Alert är en Chrome-tillägg utvecklad av bitoiu, och dess huvudfunktion är "Changes the notification icon to red if you have participating notifications".

Ladda ner GitHub Red Alert-förlängningens CRX-fil

Ladda ner GitHub Red Alert-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
Officiell webbadress https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Beskrivning Changes the notification icon to red if you have participating notifications
Filstorlek 2.98 MB
Antal Installationer 18
Aktuell Version 0.11
Senast Uppdaterad 2015-12-10
Publiceringsdatum 2015-12-10
Utvecklare bitoiu
Betalningssätt free
Tilläggswebbplats https://github.com/bitoiu/github-red-alert
Hjälpsida URL https://github.com/bitoiu/github-red-alert/issues
Stödda Språk 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
    }
}