Clear Read

Immersive reading mode

What is Clear Read?

Clear Read is a Chrome extension developed by chris.scott, and its main feature is "Immersive reading mode".

Extension Screenshots

screenshot
screenshot

Download Clear Read Extension CRX File

Download Clear Read 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

                        This extension adds a button to Chrome to toggle a distraction-free reading mode. When enabled, the plugin attempts to strip out just the core content and displays it in legible text on a plain white background.                    

Extension Basic Information

Name Clear Read Clear Read
ID kpipjgdapccmpkgipfikeajoopjbcgam
Official URL https://chromewebstore.google.com/detail/clear-read/kpipjgdapccmpkgipfikeajoopjbcgam
Description Immersive reading mode
File Size 6.59 KB
Installation Count 26,131
Current Version 0.0.10
Last Updated 2016-01-14
Publish Date 2016-01-14
Rating 3.95/5 Total 41 Ratings
Developer chris.scott
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clear Read",
    "version": "0.0.10",
    "manifest_version": 2,
    "description": "Immersive reading mode",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Clear Read"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "init.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "clear-read.css"
            ],
            "js": [
                "clear-read.js"
            ]
        }
    ]
}