GitHub Red Alert
Changes the notification icon to red if you have participating notifications
O que é GitHub Red Alert?
GitHub Red Alert é uma extensão do Chrome desenvolvida por bitoiu, e sua principal característica é "Changes the notification icon to red if you have participating notifications".
Baixar o arquivo CRX da Extensão GitHub Red Alert
Baixe arquivos de extensão GitHub Red Alert no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
URL Oficial | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Descrição | Changes the notification icon to red if you have participating notifications |
Tamanho do Arquivo | 2.98 MB |
Contagem de Instalações | 18 |
Versão Atual | 0.11 |
Última Atualização | 2015-12-10 |
Data de Publicação | 2015-12-10 |
Desenvolvedor | bitoiu |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/bitoiu/github-red-alert |
URL da Página de Ajuda | https://github.com/bitoiu/github-red-alert/issues |
Idiomas Suportados | 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 } } |