Focus Reader View

Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.

What is Focus Reader View?

Focus Reader View is a Chrome extension developed by kortina, and its main feature is "Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.".

Extension Screenshots

screenshot
screenshot

Download Focus Reader View Extension CRX File

Download Focus Reader View extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Focus Reader View Focus Reader View
ID fbhngbllhjggfpkeeiddgkkliacmegin
Official URL https://chrome.google.com/webstore/detail/focus-reader-view/fbhngbllhjggfpkeeiddgkkliacmegin
Description Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.
File Size 804 KB
Installation Count 931
Current Version 0.0.2
Last Updated 2017-06-03
Publish Date 2017-06-03
Rating 2.94/5 Total 18 Ratings
Developer kortina
Email [email protected]
Payment Type free
Extension Website https://github.com/kortina/focus-reader-view-chrome-extension/
Help Page URL https://github.com/kortina/focus-reader-view-chrome-extension/issues
Supported Languages 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"
            ]
        }
    ]
}