Read Later
Save tabs to read later and automatically sync between browsers.
什麼是Read Later?
Read Later是由https://timleland.com開發的Chrome擴展程式,該擴展的主要功能是“Save tabs to read later and automatically sync between browsers.”。
擴展截圖
下載Read Later擴展crx文件
下載Read Later擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When you find an article that is worth reading but do not have time, ReadLater allows you to save the tab for another time. - Your saved tabs will automatically sync between computers - Use the shortcut key (ctrl + shift + S) to save links without opening the extension. - Keep your browser fast by limiting the number of open tabs - Right on any link to add it to ReadLater - Save hundreds of links More info: https://timleland.com/read-later-extension/ Source Code: https://github.com/timleland/ReadLaterCE
擴展基本資訊
名稱 | Read Later |
ID | hleifpgbhiladknmecmkpgbgfmlnjhoh |
官方網址 | https://chromewebstore.google.com/detail/read-later/hleifpgbhiladknmecmkpgbgfmlnjhoh |
簡介 | Save tabs to read later and automatically sync between browsers. |
檔案大小 | 2.45 MB |
安裝次數 | 3,107 |
目前版本 | 1.7.5 |
更新時間 | 2020-11-19 |
上架時間 | 2020-01-07 |
評分 | 3.94/5 共 17 次評分 |
開發者 | https://timleland.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://timleland.com/read-later-extension/ |
說明頁面URL | https://timleland.com/read-later-extension/ |
隱私政策頁面URL | https://t.ly/privacy |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Read Later", "homepage_url": "https:\/\/timleland.com\/read-later-extension\/", "short_name": "RL", "description": "Save tabs to read later and automatically sync between browsers.", "permissions": [ "storage", "tabs", "contextMenus" ], "background": { "scripts": [ "assets\/js\/jquery.min.js", "assets\/js\/jquery.timeago.min.js", "assets\/js\/badge.js", "assets\/js\/scripts.js", "assets\/js\/backgroundScript.js" ] }, "version": "1.7.5", "browser_action": { "default_title": "Read Later", "default_icon": "assets\/img\/icon.png", "default_popup": "popup.html" }, "icons": { "16": "assets\/img\/icon.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "commands": { "save-tab": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Save Tab" } } } |