Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

Focused Reader Extension là gì?

Focused Reader Extension là một tiện ích mở rộng Chrome được phát triển bởi leocreatini.dev, và tính năng chính của nó là "Creates a focused mode to remove distractions while reading online.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Focused Reader Extension

Tải xuống các tệp mở rộng Focused Reader Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
URL Chính Thức https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
Mô tả Creates a focused mode to remove distractions while reading online.
Kích Thước Tệp 260 KB
Số Lần Cài Đặt 134
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-09-11
Ngày Phát Hành 2019-09-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển leocreatini.dev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}