GitHub Red Alert
Changes the notification icon to red if you have participating notifications
Was ist GitHub Red Alert?
GitHub Red Alert ist eine Chrome-Erweiterung, die von bitoiu entwickelt wurde, und ihr Hauptmerkmal ist "Changes the notification icon to red if you have participating notifications".
GitHub Red Alert-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Red Alert-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Offizielle URL | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Beschreibung | Changes the notification icon to red if you have participating notifications |
Dateigröße | 2.98 MB |
Installationsanzahl | 18 |
Aktuelle Version | 0.11 |
Letztes Update | 2015-12-10 |
Veröffentlichungsdatum | 2015-12-10 |
Entwickler | bitoiu |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/bitoiu/github-red-alert |
Hilfeseite URL | https://github.com/bitoiu/github-red-alert/issues |
Unterstützte Sprachen | 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 } } |