Hacker News Collapse
Collapses comments on Hacker News
Hacker News Collapse란 무엇입니까?
Hacker News Collapse은(는) tomi.czinege에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collapses comments on Hacker News"입니다.
확장 프로그램 스크린샷
Hacker News Collapse 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Collapses comment trees on Hacker News. To collapse a comment, click on the [-] button at the right of the commet header. Changes in 1.2.1: * Fixed a bug regarding HN Collapse not working properly when the black line of mourning is visible on on HN. * Fixed a bug regarding the positioning of the collapse button on deleted comments. Changes in 1.2: * Added support for HTTPS. Changes in 1.1: * Fixed bug regarding not hiding the "reply" link when the comment has no children. * Added support for the "threads" page.
확장 프로그램 기본 정보
이름 | |
ID | bbkfcamiocfccgmcjngdljolljhifdph |
공식 URL | https://chromewebstore.google.com/detail/hacker-news-collapse/bbkfcamiocfccgmcjngdljolljhifdph |
설명 | Collapses comments on Hacker News |
파일 크기 | 39.67 KB |
설치 횟수 | 149 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2013-07-04 |
출시 날짜 | 2013-07-04 |
평점 | 4.20/5 총 15 개의 평점 |
개발자 | tomi.czinege |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bitbucket.org/drjokepu/hncollapse |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Collapse", "version": "1.2.1", "manifest_version": 2, "description": "Collapses comments on Hacker News", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/item?id=*", "http:\/\/news.ycombinator.com\/threads?id=*", "https:\/\/news.ycombinator.com\/item?id=*", "https:\/\/news.ycombinator.com\/threads?id=*" ], "css": [], "js": [ "jquery.js", "hncollapse.js" ] } ], "permissions": [ "http:\/\/news.ycombinator.com\/item?id=*", "https:\/\/news.ycombinator.com\/item?id=*" ] } |