Hacker News Comments Notifier Plugin
Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published
Hacker News Comments Notifier Plugin란 무엇입니까?
Hacker News Comments Notifier Plugin은(는) https://www.binomads.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published"입니다.
확장 프로그램 스크린샷
Hacker News Comments Notifier Plugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Get notifications of Hacker News' threads. - Receive notifications each 10 minutes of the threads you get subscribed to. - At the original HN website - https://news.ycombinator.com - new comments show up. - Click on the extension badge to see the list of subscribed threads, with HN original look and feel. - See the unread comments just at the extension badge. * This extension hasn't been tested together with other Hacker News Extensions. Make sure you uninstall other Hacker News extensions or deactivate them * Do you want other features? You found a bug? Report here: https://github.com/binomads/hn-notification-plugin See a GIF of how it works here: https://user-images.githubusercontent.com/84540/32239715-9b77868a-be6b-11e7-9543-4858fe292d5f.gif
확장 프로그램 기본 정보
이름 | Hacker News Comments Notifier Plugin |
ID | fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
공식 URL | https://chromewebstore.google.com/detail/hacker-news-comments-noti/fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
설명 | Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published |
파일 크기 | 30.68 KB |
설치 횟수 | 16 |
현재 버전 | 0.0.11 |
최근 업데이트 | 2017-10-31 |
출시 날짜 | 2017-10-31 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://www.binomads.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/binomads/hn-notification-plugin |
도움말 페이지 URL | https://github.com/binomads/hn-notification-plugin |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Comments Notifier Plugin", "description": "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published", "version": "0.0.11", "manifest_version": 2, "short_name": "Hacker News Comments Notifier", "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "i.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "default_title": "Hacker News Notifier", "default_popup": "popup.html" }, "icons": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "background": { "scripts": [ "b.js" ] }, "permissions": [ "notifications", "tabs", "https:\/\/hacker-news.firebaseio.com\/v0\/item\/*" ], "web_accessible_resources": [ "icons\/hn_128.png" ] } |