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