Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

Co je Focused Reader Extension?

Focused Reader Extension je rozšíření Chrome vyvinuté leocreatini.dev, a jeho hlavní funkcí je „Creates a focused mode to remove distractions while reading online.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Focused Reader Extension

Stáhněte si soubory rozšíření Focused Reader Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
Oficiální URL https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
Popis Creates a focused mode to remove distractions while reading online.
Velikost souboru 260 KB
Počet instalací 134
Aktuální Verze 0.1.0
Poslední Aktualizace 2019-09-11
Datum Vydání 2019-09-10
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář leocreatini.dev
Typ Platby free
Podporované Jazyky 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"
    ]
}