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 |
Eメール | [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" ] } ] } |