GitHub Red Alert
Changes the notification icon to red if you have participating notifications
Co to jest GitHub Red Alert?
GitHub Red Alert to rozszerzenie Chrome opracowane przez bitoiu, a jego główną funkcją jest „Changes the notification icon to red if you have participating notifications”.
Pobierz plik CRX rozszerzenia GitHub Red Alert
Pobierz pliki rozszerzeń GitHub Red Alert w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Oficjalny URL | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Opis | Changes the notification icon to red if you have participating notifications |
Rozmiar pliku | 2.98 MB |
Liczba instalacji | 18 |
Aktualna Wersja | 0.11 |
Ostatnia Aktualizacja | 2015-12-10 |
Data Publikacji | 2015-12-10 |
Deweloper | bitoiu |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bitoiu/github-red-alert |
Adres URL Strony Pomocy | https://github.com/bitoiu/github-red-alert/issues |
Obsługiwane Języki | 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 } } |