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 là gì?
Read Later for Hacker News là một tiện ích mở rộng Chrome được phát triển bởi Julian Santa Ana, và tính năng chính của nó là "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Read Later for Hacker News
Tải xuống các tệp mở rộng Read Later for Hacker News dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Read Later for Hacker News |
ID | kcfdkmoconldndmnipphejclfmajmanc |
URL Chính Thức | https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc |
Mô tả | Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.… |
Kích Thước Tệp | 253 KB |
Số Lần Cài Đặt | 27 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-06-16 |
Ngày Phát Hành | 2014-06-16 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Julian Santa Ana |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | http://me.juliann.com.ar |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |