Reader Mode
Puts Google Chrome into read mode for a pleasant reading experience.
Reader Mode란 무엇입니까?
Reader Mode은(는) xcv58에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Puts Google Chrome into read mode for a pleasant reading experience."입니다.
확장 프로그램 스크린샷
Reader Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is a forked version of https://chrome.google.com/webstore/detail/read-mode/nagcaahojecfeopbghgihcabgiepploa Just click on the glasses icon in the address bar, the current page will turn into a nice-to-read black on white page allowing you to read without forcing your eyes. Ads and Flash animations are also removed while on read-mode. Click the icon again and everything will go back to normal. Use Alt+F to toggle Reader Mode. Use Alt+1, Alt+2, Alt+3 to decrease, increase, reset font size.
확장 프로그램 기본 정보
이름 | Reader Mode |
ID | ihgjiapheabakagbnbaminbheoihgajn |
공식 URL | https://chromewebstore.google.com/detail/reader-mode/ihgjiapheabakagbnbaminbheoihgajn |
설명 | Puts Google Chrome into read mode for a pleasant reading experience. |
파일 크기 | 207 KB |
설치 횟수 | 2,885 |
현재 버전 | 1.0.9 |
최근 업데이트 | 2015-05-07 |
출시 날짜 | 2015-05-07 |
평점 | 2.75/5 총 20 개의 평점 |
개발자 | xcv58 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reader Mode", "version": "1.0.9", "author": "xcv58", "description": "Puts Google Chrome into read mode for a pleasant reading experience.", "icons": { "128": "images\/icon-128.png", "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png" }, "background": { "scripts": [ "js\/json2.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": true, "css": [ "stylesheets\/reader.css" ], "js": [ "js\/reader.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "page_action": { "default_icon": "images\/icon-enabled.png", "default_title": "Toggle Read Mode." }, "commands": { "decrease-fontsize": { "suggested_key": { "default": "Alt+1", "mac": "Alt+1" }, "description": "decrease font size." }, "increase-fontsize": { "suggested_key": { "default": "Alt+2", "mac": "Alt+2" }, "description": "increase font size." }, "reset-fontsize": { "suggested_key": { "default": "Alt+3", "mac": "Alt+3" }, "description": "reset font size." }, "_execute_page_action": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" } } }, "options_page": "options.html", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |