Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

What is Focused Reader Extension?

Focused Reader Extension is a Chrome extension developed by leocreatini.dev, and its main feature is "Creates a focused mode to remove distractions while reading online.".

Extension Screenshots

screenshot

Download Focused Reader Extension Extension CRX File

Download Focused Reader Extension 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 project aims to provide an easy way to remove distractions and information overloading when reading online content. Great for focusing on solely what you're reading.

Cheers,
Leo

Github: https://github.com/leocreatini/focused-reader-extension                    

Extension Basic Information

Name Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
Official URL https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
Description Creates a focused mode to remove distractions while reading online.
File Size 260 KB
Installation Count 134
Current Version 0.1.0
Last Updated 2019-09-11
Publish Date 2019-09-10
Rating 5.00/5 Total 2 Ratings
Developer leocreatini.dev
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focused Reader Extension",
    "short_name": "focused-reader-extension",
    "version": "0.1.0",
    "description": "Creates a focused mode to remove distractions while reading online.",
    "icons": {
        "128": "off.png"
    },
    "browser_action": {
        "default_title": "Toggle Focused Reader Mode"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'",
    "offline_enabled": true,
    "permissions": [
        "",
        "tabs",
        "storage"
    ]
}