Read It Later New Tab
Save articles and pages to a read later list on your new tab.
Read It Later New Tab란 무엇입니까?
Read It Later New Tab은(는) VPP Technologies, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save articles and pages to a read later list on your new tab."입니다.
확장 프로그램 스크린샷
Read It Later New Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Read It Later allows you to build your reading list as your browse the web. This extension replaces your new tab page with a clean page that features a web search powered by Bing and your reading list. As you browse the web, just click the button to add any post or article to your personal reading list and save your favorite content for later. Privacy Policy: https://readlatertab.com/privacy Terms of Service: https://readlatertab.com/terms-of-service/ Contact Us: https://readlatertab.com/contact/ How to Uninstall: https://readlatertab.com/uninstall/ Permissions requested: Active tab: The extension requests the title and url of the active tab to save to the reading list. Local storage: The extension stores in local storage the url and title of the article for display on the user's new tab.
확장 프로그램 기본 정보
이름 | Read It Later New Tab |
ID | kmlehibbdkdcbmkaccmhephiklbenaca |
공식 URL | https://chromewebstore.google.com/detail/read-it-later-new-tab/kmlehibbdkdcbmkaccmhephiklbenaca |
설명 | Save articles and pages to a read later list on your new tab. |
파일 크기 | 285 KB |
설치 횟수 | 10,548 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2022-12-02 |
출시 날짜 | 2022-09-08 |
개발자 | VPP Technologies, Inc. |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://readlatertab.com/ |
도움말 페이지 URL | https://readlatertab.com/contact/ |
개인정보 보호 정책 페이지 URL | https://onthisdaytab.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read It Later New Tab", "version": "0.1.5", "manifest_version": 3, "description": "Save articles and pages to a read later list on your new tab.", "action": { "default_icon": "images\/icon32.png", "default_popup": "popup.html" }, "icons": { "32": "images\/icon32.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "file:\/\/\/" ], "js": [ "core.js" ] } ], "permissions": [ "storage", "activeTab" ], "commands": { "add-url": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Add current page to ReadLater" } } } |