Hacker News discussion
Displays an icon linking to comments on Hacker News for the current page.
Hacker News discussion란 무엇입니까?
Hacker News discussion은(는) Adam Sapek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays an icon linking to comments on Hacker News for the current page."입니다.
확장 프로그램 스크린샷
Hacker News discussion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The icon is displayed only for pages that have been discussed on Hacker News. Keyboard shortcuts: Ctrl+Y: open comments in a new tab Alt+Y: open comments in the current tab The extension does not collect any data. Note however that the URLs of pages you visit will be sent over https to HNSearch (https://hn.algolia.com) which is hosted by a YC company Algolia. The extension does not have permission to access data on websites you visit.
확장 프로그램 기본 정보
이름 | Hacker News discussion |
ID | iggcipafbcjfofibfhhelnipahhepmkd |
공식 URL | https://chromewebstore.google.com/detail/hacker-news-discussion/iggcipafbcjfofibfhhelnipahhepmkd |
설명 | Displays an icon linking to comments on Hacker News for the current page. |
파일 크기 | 8.75 KB |
설치 횟수 | 125 |
현재 버전 | 1.9 |
최근 업데이트 | 2015-09-20 |
출시 날짜 | 2015-09-19 |
평점 | 5.00/5 총 7 개의 평점 |
개발자 | Adam Sapek |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News discussion", "version": "1.9", "description": "Displays an icon linking to comments on Hacker News for the current page.", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "y.png", "default_title": "See discussion on HN" }, "commands": { "newtabHN": { "suggested_key": { "default": "Ctrl+Y" }, "description": "Open HN comments in a new tab" }, "_execute_page_action": { "suggested_key": { "default": "Alt+Y" } } }, "permissions": [ "tabs", "https:\/\/hn.algolia.com\/*" ], "icons": { "128": "y128.png" }, "manifest_version": 2 } |