Hacker News Comment Highlighter
Highlights unread comments in Hacker News threads
Hacker News Comment Highlighter란 무엇입니까?
Hacker News Comment Highlighter은(는) Jonathan Bergknoff에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights unread comments in Hacker News threads"입니다.
확장 프로그램 스크린샷
Hacker News Comment Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new. This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.
확장 프로그램 기본 정보
이름 | Hacker News Comment Highlighter |
ID | acgehogfllndeafpieloojhdmpffbjnb |
공식 URL | https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb |
설명 | Highlights unread comments in Hacker News threads |
파일 크기 | 13.14 KB |
설치 횟수 | 45 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2015-08-06 |
출시 날짜 | 2015-08-06 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Jonathan Bergknoff |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jbergknoff/hn-comment-highlighter |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News Comment Highlighter", "description": "Highlights unread comments in Hacker News threads", "version": "1.0.1", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/item?*" ], "js": [ "highlighter.js" ], "css": [ "highlighter.css" ] } ], "permissions": [ "storage" ] } |