Reading List
This extension saves a list of links to pages to read later.
什麼是Reading List?
Reading List是由alexpdraper開發的Chrome擴展程式,該擴展的主要功能是“This extension saves a list of links to pages to read later.”。
擴展截圖
下載Reading List擴展crx文件
下載Reading List擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This reading list extension allows you to save pages in a list to get back to later. It’s super slick and easy to use, and it helps keep your tab count down. How to use it? 1. Go to a page you want to save for later 2. Click the reading list icon on the top right of your browser Chrome Reading List icon 3. Click the + button 4. When you want to read a page you saved, open up the extension and click the reading item you want to read (control + click or command ⌘/windows key ⊞ + click to open the page in a new tab) 5. Done with a page? Click the × next to said page in your reading list, and it will magically vanish.
擴展基本資訊
名稱 | Reading List |
ID | lloccabjgblebdmncjndmiibianflabo |
官方網址 | https://chromewebstore.google.com/detail/reading-list/lloccabjgblebdmncjndmiibianflabo |
簡介 | This extension saves a list of links to pages to read later. |
檔案大小 | 39.54 KB |
安裝次數 | 46,957 |
目前版本 | 2.4.4 |
更新時間 | 2018-04-14 |
上架時間 | 2018-04-14 |
評分 | 4.75/5 共 724 次評分 |
開發者 | alexpdraper |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/alexpdraper/reading-list |
支援的語言 | de,en,fr,es,it,bg,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" } }, "background": { "scripts": [ "background.bundle.js" ] }, "permissions": [ "tabs", "contextMenus", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "minimum_chrome_version": "20", "options_page": "options.html", "version": "2.4.4" } |