Read Later
This extension save pages when you want to read later.
什麼是Read Later?
Read Later是由FreMaNgo開發的Chrome擴展程式,該擴展的主要功能是“This extension save pages when you want to read later.”。
擴展截圖
下載Read Later擴展crx文件
下載Read Later擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A chrome extension to saving links for later reading. ## The icon is provided by Zeeman ## ## website: https://dribbble.com/Zeeman ## ******** the last update ******** [UPDATE v0.3.8 2018/10/09] - update code struct. - faster ******** read me ************** [README] - save webpage address when you want to read later. - support google extensions sync. *you must login to Google account - support search post. - support clear all post. - support export. ****** Update History ********* [UPDATE v0.3.7 2018/08/09] - [Add] export to standard Netscape Bookmark File Format - [update] smaller [UPDATE v0.3.0 2018/02/25] *** when you reload this extension, please change your read-later folder name to __read_later__ *** - Add more options in the settings panel - Fixed BUGs. [UPDATE v0.1.0 2018/02/09] *** Use bookmarks to replace chrome storage *** when you use this extensions, it will create a new bookmark folder '__read_later__' under other bookmarks. So, you can add any number of read-later posts without the limitations of chrome extensions. Happy to use :)
擴展基本資訊
名稱 | |
ID | fljjbnapfhadigagkokchheegldfmghf |
官方網址 | https://chrome.google.com/webstore/detail/read-later/fljjbnapfhadigagkokchheegldfmghf |
簡介 | This extension save pages when you want to read later. |
檔案大小 | 89.8 KB |
安裝次數 | 276 |
目前版本 | 0.3.8 |
更新時間 | 2018-10-08 |
上架時間 | 2018-10-08 |
評分 | 3.83/5 共 6 次評分 |
開發者 | FreMaNgo |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/itcat99/read-later |
說明頁面URL | https://github.com/itcat99/read-later/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Read Later", "short_name": "read later", "description": "This extension save pages when you want to read later.", "version": "0.3.8", "browser_action": { "default_icon": ".\/icons\/icon_48.png", "default_popup": "popup.html", "default_title": "read later" }, "background": { "scripts": [ ".\/assets\/vendor.js", ".\/assets\/background.js" ] }, "permissions": [ "tabs", "contextMenus", "notifications", "storage", "bookmarks" ], "icons": { "16": ".\/icons\/icon_16.png", "48": ".\/icons\/icon_48.png", "128": ".\/icons\/icon_128.png" }, "commands": { "ADD_POST": { "suggested_key": { "default": "Ctrl+Shift+M", "mac": "MacCtrl+Shift+M" }, "description": "add a new read later post." } } } |