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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |