Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

Focused Reader Extensionとは何ですか?

Focused Reader Extensionはleocreatini.devによって開発されたChromeの拡張機能で、その主な機能は「Creates a focused mode to remove distractions while reading online.」です。

拡張機能のスクリーンショット

screenshot

Focused Reader Extension拡張機能のCRXファイルをダウンロード

Focused Reader Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
公式URL https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
説明 Creates a focused mode to remove distractions while reading online.
ファイルサイズ 260 KB
インストール数 134
現在のバージョン 0.1.0
最終更新日 2019-09-11
公開日 2019-09-10
評価 5.00/5 合計 2 レビュー
開発者 leocreatini.dev
支払い方法 free
対応言語 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"
    ]
}