GitHub Red Alert

Changes the notification icon to red if you have participating notifications

¿Qué es GitHub Red Alert?

GitHub Red Alert es una extensión de Chrome desarrollada por bitoiu, y su función principal es "Changes the notification icon to red if you have participating notifications".

Descargar Archivo CRX de la Extensión GitHub Red Alert

Descarga archivos de extensión GitHub Red Alert en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
URL Oficial https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
Descripción Changes the notification icon to red if you have participating notifications
Tamaño del Archivo 2.98 MB
Cantidad de Instalaciones 18
Versión Actual 0.11
Última Actualización 2015-12-10
Fecha de Publicación 2015-12-10
Desarrollador bitoiu
Tipo de Pago free
Sitio Web de la Extensión https://github.com/bitoiu/github-red-alert
URL de la Página de Ayuda https://github.com/bitoiu/github-red-alert/issues
Idiomas Soportados 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
    }
}