Focus Reader View
Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.
什么是Focus Reader View?
Focus Reader View是由kortina开发的Chrome扩展程序,该扩展的主要功能是“Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.”。
扩展截图
下载Focus Reader View扩展crx文件
下载Focus Reader View扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM. * ctrl+shift+o keyboard shortcut (or use the button) * large font size for easy reading * sensible line width * simple black Helvetica on a white background
扩展基本信息
名称 | |
ID | fbhngbllhjggfpkeeiddgkkliacmegin |
官方URL | https://chrome.google.com/webstore/detail/focus-reader-view/fbhngbllhjggfpkeeiddgkkliacmegin |
简介 | Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM. |
文件大小 | 804 KB |
安装次数 | 931 |
当前版本 | 0.0.2 |
更新时间 | 2017-06-03 |
上架时间 | 2017-06-03 |
评分 | 2.94/5 共18次评分 |
开发者 | kortina |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kortina/focus-reader-view-chrome-extension/ |
帮助页面URL | https://github.com/kortina/focus-reader-view-chrome-extension/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focus Reader View", "description": "Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.", "version": "0.0.2", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "images\/focus-reader-view16.png", "48": "images\/focus-reader-view48.png", "128": "images\/focus-reader-view128.png" }, "page_action": { "default_icon": { "19": "images\/focus-reader-view19.png", "38": "images\/focus-reader-view38.png" }, "default_title": "Distraction-free reading." }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "focus-reader.css" ], "js": [ "jquery.min.1.3.2.js", "content.js" ] } ] } |