GitHub Red Alert
Changes the notification icon to red if you have participating notifications
什么是GitHub Red Alert?
GitHub Red Alert是由bitoiu开发的Chrome扩展程序,该扩展的主要功能是“Changes the notification icon to red if you have participating notifications”。
下载GitHub Red Alert扩展crx文件
下载GitHub Red Alert扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
官方URL | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
简介 | Changes the notification icon to red if you have participating notifications |
文件大小 | 2.98 MB |
安装次数 | 18 |
当前版本 | 0.11 |
更新时间 | 2015-12-10 |
上架时间 | 2015-12-10 |
开发者 | bitoiu |
付费类型 | free |
扩展官网 | https://github.com/bitoiu/github-red-alert |
帮助页面URL | https://github.com/bitoiu/github-red-alert/issues |
支持的语言 | 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 } } |