Read Later
Store links to read later.
Read Laterคืออะไร?
Read Later เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shubhanshu.com และคุณลักษณะหลักของมันคือ "Store links to read later."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Read Later
ดาวน์โหลดไฟล์ส่วนขยาย Read Later ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have a habit of opening too many links in your chrome browser and wishing to read all of them ? This is what I call link hopping. It presents us with some major problems: 1. Too many links opened in your browser, resulting in huge sluggishness while working on other tabs. 2. Your major work tabs are lost in the sea of many read later tabs. 3. Bookmarking a links is for links which you liked and want to use for later reference. 4. If you just want to finish reading links later and then delete them from your todo list this is the right extension for you. 5. Save and Sync across all your chrome logged in browsers, with just a click of the button. IMPORTANT: You need to be logged into Chrome and have your extension sync settings enabled in order to sync your links across devices. You can do this via chrome://settings/syncSetup. This will prevent you from losing all your links if you re-install Chrome or if you want to use it on another computer with your Chrome logged in. UPDATE: 4.0.3 ----- Allow backward compatibility with URL's not having timestamp. 4.0.2 ----- - Fix broken UI of 4.0.1 4.0.1 ----- 1. Add URLs using keyboard shortcut Ctrl+Shift+L 2. Cleaner API for managing storage. 3. Enhanced permissions. 4. Export URL's as JSON. Thanks to Alexander Kashev for contributions. 3.0.1 ------ Added badge to the icon to show total stored links. 2.0.1 ----- New Slick UI thanks to Johny Jose Icons and Shorter titles for links thanks FrelEsquif 1.0.1 -------- 1. Support adding more than 31 links, max limit 512 2. Duplicate links not allowed 3. Data structure for saving links changed. Each link is saved as key value pair in the sync storage as opposed to the earlier version where all links were stored in an array. 4. UI bug regarding Message box changed. ----------------------------------------------------------------- This is a google chrome extension for saving links for later reading. All the links are synced across all the google chrome browsers you are logged into. Download at: https://github.com/downloads/napsternxg/ReadLater/ReadLater.zip Source Code at: https://github.com/napsternxg/ReadLater FAQ at: http://smexyyweby.wordpress.com/readlater/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Read Later |
ID | nplngmgdacdfncdkpdomipkehfnbinfa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/read-later/nplngmgdacdfncdkpdomipkehfnbinfa |
คำอธิบาย | Store links to read later. |
ขนาดไฟล์ | 10.39 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 4.0.3 |
อัปเดตครั้งล่าสุด | 2020-05-27 |
วันที่เผยแพร่ | 2020-05-26 |
คะแนน | 4.54/5 รวมทั้งหมด 83 คะแนน |
ผู้พัฒนา | https://shubhanshu.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://napsternxg.github.com/ReadLater/ |
URL หน้าช่วยเหลือ | http://smexyyweby.wordpress.com/readlater/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Later", "version": "4.0.3", "manifest_version": 2, "description": "Store links to read later.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "icon.png" }, "background": { "scripts": [ "core.js", "background.js" ], "persistent": false }, "permissions": [ "storage", "activeTab" ], "commands": { "add-url": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Add current page to ReadLater" } } } |