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
官方網址 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"
    ]
}