Read Later for Hacker News
Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…
Read Later for Hacker News란 무엇입니까?
Read Later for Hacker News은(는) Julian Santa Ana에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…"입니다.
확장 프로그램 스크린샷
Read Later for Hacker News 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services. Simply install this extension and head over to Hacker News to see a new added function right next to the comments' count that says Read Later, click on it and the story will be automatically saved to your Pocket or Instapaper account for you to read when you want. It will also add automatically tags to it so that you can find your HackerNews stories more easily.
확장 프로그램 기본 정보
이름 | Read Later for Hacker News |
ID | kcfdkmoconldndmnipphejclfmajmanc |
공식 URL | https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc |
설명 | Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.… |
파일 크기 | 253 KB |
설치 횟수 | 27 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-06-16 |
출시 날짜 | 2014-06-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Julian Santa Ana |
결제 유형 | free |
도움말 페이지 URL | http://me.juliann.com.ar |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Later for Hacker News", "description": "", "version": "1.0", "icons": { "128": "icon128.png" }, "manifest_version": 2, "options_page": "options.html", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "https:\/\/news.ycombinator.com\/*" ], "js": [ "jquery-1.11.0.min.js", "dontforgetyourkeys.js", "hnreadlater.js" ] } ], "permissions": [ "https:\/\/getpocket.com\/v3\/oauth\/request", "https:\/\/getpocket.com\/v3\/oauth\/authorize", "https:\/\/getpocket.com\/v3\/add", "https:\/\/www.instapaper.com\/api\/authenticate", "https:\/\/www.instapaper.com\/api\/add" ], "web_accessible_resources": [ "welcome.html" ] } |