Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

Apa itu Focused Reader Extension?

Focused Reader Extension adalah ekstensi Chrome yang dikembangkan oleh leocreatini.dev, dan fitur utamanya adalah "Creates a focused mode to remove distractions while reading online.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Focused Reader Extension

Unduh file ekstensi Focused Reader Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
URL Resmi https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
Deskripsi Creates a focused mode to remove distractions while reading online.
Ukuran File 260 KB
Jumlah Instalasi 134
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2019-09-11
Tanggal Publikasi 2019-09-10
Penilaian 5.00/5 Total 2 Penilaian
Pengembang leocreatini.dev
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}