Instapaper
Instapaper browser extension to save links for offline reading.
Instapaper là gì?
Instapaper là một tiện ích mở rộng Chrome được phát triển bởi https://www.instapaper.com, và tính năng chính của nó là "Instapaper browser extension to save links for offline reading.".
Ả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 Instapaper
Tải xuống các tệp mở rộng Instapaper 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
Instapaper is a simple tool for saving web pages to read later on your iPhone, iPad, Android, computer, or Kindle. This browser extension may be used in place of the bookmarklet to save articles directly into your Instapaper queue. It works by saving the current tab to your Instapaper account . Users who aren't logged in will be taken to a login or signup page, after completing the process they will be redirected back to the original page with the original page saved in their queue.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Instapaper |
ID | ldjkgaaoikpmhmkelcgkgacicjfbofhh |
URL Chính Thức | https://chromewebstore.google.com/detail/instapaper/ldjkgaaoikpmhmkelcgkgacicjfbofhh |
Mô tả | Instapaper browser extension to save links for offline reading. |
Kích Thước Tệp | 65.03 KB |
Số Lần Cài Đặt | 262,237 |
Phiên Bản Hiện Tại | 2.2.1 |
Cập Nhật Lần Cuối | 2023-08-17 |
Ngày Phát Hành | 2020-04-16 |
Đánh Giá | 3.77/5 Tổng số 517 Đánh Giá |
Nhà Phát Triển | https://www.instapaper.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.instapaper.com |
URL Trang Trợ Giúp | https://instapaper.zendesk.com |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Instapaper", "description": "Instapaper browser extension to save links for offline reading.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "insta_logo_tiny.png", "48": "insta_logo_small.png", "128": "insta_logo.png" }, "commands": { "ctrl-shift-s": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Save article keyboard shortcut" } }, "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "readlater.js", "type": "module" }, "action": { "default_icon": "insta_default_action.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "bookmarklet.js", "deflate-base64-min.js", "highlight_ugly.js" ], "css": [ "instapaper.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "twitter.js" ] }, { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "reddit.js" ] }, { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "hackernews.js" ] }, { "matches": [ "http:\/\/www.usv.com\/", "https:\/\/www.usv.com\/" ], "js": [ "usv.js" ], "css": [ "usv.css" ] } ], "web_accessible_resources": [ { "resources": [ "*.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |