To the Comments!
View the reddit or Hacker News comments for a given page
To the Comments!란 무엇입니까?
To the Comments!은(는) https://burba.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View the reddit or Hacker News comments for a given page"입니다.
확장 프로그램 스크린샷
To the Comments! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
View the Hacker News and Reddit comments for your current page.
확장 프로그램 기본 정보
이름 | To the Comments! |
ID | ceghmjigckmapkbgccgehlipbkdhglab |
공식 URL | https://chromewebstore.google.com/detail/to-the-comments/ceghmjigckmapkbgccgehlipbkdhglab |
설명 | View the reddit or Hacker News comments for a given page |
파일 크기 | 20.92 KB |
설치 횟수 | 16 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2017-04-04 |
출시 날짜 | 2017-04-04 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://burba.io |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://tothecomments.burba.io |
도움말 페이지 URL | http://tothecomments.burba.io |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "To the Comments!", "description": "View the reddit or Hacker News comments for a given page", "version": "1.0.1", "icons": { "128": "src\/images\/comment.png" }, "permissions": [ "activeTab" ], "browser_action": { "default_icon": "src\/images\/comment.png", "default_title": "To the Comments!", "default_popup": "src\/popup.html" }, "background": { "scripts": [ "src\/js\/thru.js", "src\/js\/get-active-tab.js", "src\/js\/get-active-url.js", "src\/js\/get-comments.js", "src\/js\/background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+C" }, "description": "Show comments for current page" }, "open-top-reddit-link": { "suggested_key": { "default": "Alt+R" }, "description": "Open the top reddit link for this page" }, "open-top-hn-link": { "suggested_key": { "default": "Alt+H" }, "description": "Open the top Hacker News link for this page" } } } |