Reader Extension For Chrome
Simple extension to that reminds you to read what you saved.
Reader Extension For Chrome란 무엇입니까?
Reader Extension For Chrome은(는) https://rukshn.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension to that reminds you to read what you saved."입니다.
확장 프로그램 스크린샷
Reader Extension For Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple chrome extension that makes you read what you save. **Update : New in 1.7.2** * Full text search for your web history * New UI * Notification bar * SVG bug fix Do save items to read later and forget them later? Reader extension will show your saved items every time you open a new tab. Reader is a simple extension helps you to bookmark and actually read what you save. * Everything you save is shown in every New Tab * Easy to add and remove items * Syncing and offline mode coming soon
확장 프로그램 기본 정보
이름 | Reader Extension For Chrome |
ID | emeacaomhbajejnndadbkbmfhpljjeik |
공식 URL | https://chromewebstore.google.com/detail/reader-extension-for-chro/emeacaomhbajejnndadbkbmfhpljjeik |
설명 | Simple extension to that reminds you to read what you saved. |
파일 크기 | 606 KB |
설치 횟수 | 78 |
현재 버전 | 1.7.7 |
최근 업데이트 | 2018-05-28 |
출시 날짜 | 2018-05-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://rukshn.github.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://rukshn.github.io |
도움말 페이지 URL | https://twitter.com/justruky |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reader Extension For Chrome", "short_name": "Reader", "description": "Simple extension to that reminds you to read what you saved.", "version": "1.7.7", "permissions": [ "storage", "activeTab", "contextMenus", "tabs", "https:\/\/fonts.googleapis.com\/*", "https:\/\/cdnjs.cloudflare.com\/*", "https:\/\/refresh.fun\/api\/*" ], "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "css": [ "main.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] }, { "js": [ "cs.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "chrome_url_overrides": { "newtab": "home.html" }, "icons": { "32": "icon32.png", "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "manifest_version": 2 } |