GitHub Red Alert
Changes the notification icon to red if you have participating notifications
Qu'est-ce que GitHub Red Alert ?
GitHub Red Alert est une extension Chrome développée par bitoiu, et sa fonction principale est "Changes the notification icon to red if you have participating notifications".
Télécharger le fichier CRX de l'extension GitHub Red Alert
Téléchargez les fichiers d'extension GitHub Red Alert au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
URL Officiel | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Description | Changes the notification icon to red if you have participating notifications |
Taille du Fichier | 2.98 MB |
Nombre d'Installations | 18 |
Version Actuelle | 0.11 |
Dernière Mise à Jour | 2015-12-10 |
Date de Publication | 2015-12-10 |
Développeur | bitoiu |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/bitoiu/github-red-alert |
URL de la Page d'Aide | https://github.com/bitoiu/github-red-alert/issues |
Langues Prises en Charge | 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 } } |