Notifications Preview for GitHub
Quickly see your notifications in a popup without leaving the current page
Notifications Preview for GitHub란 무엇입니까?
Notifications Preview for GitHub은(는) Tanmay Rajani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly see your notifications in a popup without leaving the current page"입니다.
확장 프로그램 스크린샷
Notifications Preview for GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Things it offers: * Allows to preview the unread notifications using pop-overs on hover looking exactly like the ones on the right (profile and new-repo) * Shows the count of notifications on the bell icon * Option to view only participating notifications * Allows to perform actions like marking as read and unsubscribing on the notifications More info/code at https://github.com/tanmayrajani/notifications-preview-github Found issues? Please log into the repo provided above. Cheers! Credits: - Icon made by https://www.flaticon.com/authors/google from https://www.flaticon.com is licensed by http://creativecommons.org/licenses/by/3.0/ (Creative Commons BY 3.0)
확장 프로그램 기본 정보
이름 | Notifications Preview for GitHub |
ID | kgilejfahkjidpaclkepbdoeioeohfmj |
공식 URL | https://chromewebstore.google.com/detail/notifications-preview-for/kgilejfahkjidpaclkepbdoeioeohfmj |
설명 | Quickly see your notifications in a popup without leaving the current page |
파일 크기 | 30.9 KB |
설치 횟수 | 368 |
현재 버전 | 23.4.6 |
최근 업데이트 | 2023-04-06 |
출시 날짜 | 2020-05-22 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | Tanmay Rajani |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tanmayrajani/notifications-preview-github |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notifications Preview for GitHub", "homepage_url": "https:\/\/github.com\/tanmayrajani\/notifications-preview-github", "version": "23.4.6", "manifest_version": 2, "minimum_chrome_version": "61", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "55.0" } }, "permissions": [ "storage" ], "description": "Quickly see your notifications in a popup without leaving the current page", "icons": { "128": "\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "\/github-notifications-preview.css" ], "js": [ "\/options-storage.js", "\/github-notifications-preview.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "\/options-storage.js" ] }, "options_ui": { "chrome_style": true, "page": "\/options.html" } } |