GitHub Red Alert

Changes the notification icon to red if you have participating notifications

Cos'è GitHub Red Alert?

GitHub Red Alert è un'estensione di Chrome sviluppata da bitoiu, e la sua funzione principale è "Changes the notification icon to red if you have participating notifications".

Scarica il file CRX dell'estensione GitHub Red Alert

Scarica i file di estensione GitHub Red Alert in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
URL Ufficiale https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Descrizione Changes the notification icon to red if you have participating notifications
Dimensione del File 2.98 MB
Conteggio Installazioni 18
Versione Corrente 0.11
Ultimo Aggiornamento 2015-12-10
Data di Pubblicazione 2015-12-10
Sviluppatore bitoiu
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bitoiu/github-red-alert
URL della Pagina di Aiuto https://github.com/bitoiu/github-red-alert/issues
Lingue Supportate 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
    }
}