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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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." } } } |