Bionic Reading - Focused

Faster Better and More Focused Reading

Bionic Reading - Focused là gì?

Bionic Reading - Focused là một tiện ích mở rộng Chrome được phát triển bởi lionjs.com, và tính năng chính của nó là "Faster Better and More Focused Reading".

Ả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 Bionic Reading - Focused

Tải xuống các tệp mở rộng Bionic Reading - Focused 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

                        # BionicReading Extension

A smart bionic reading extension for faster better and more focused reading.

## How to use

This extension will autorun after installation, no extra click or settings.
Press Ctrl + B to enable or disable autorun.

> Tip: Cmd + B for Mac users.

## Dark mode

Press Alt + C to get more focused reading experience in dark mode.
Press Alt + C again to disable.

> Tip: Alt + C for Mac users.

## Shortcut collision

Open chrome://extensions/shortcuts and modify this extension's shortcuts.

## Other features

- Blazing fast since it only affects the content in view.
- Works on infinite scroll pages such as Twitter / Reddit.

## Websites need to be supported

- [x] Google
- [x] Gmail
- [x] GitHub
- [x] Youtube
- [x] Reddit
- [ ] Notion
- [ ] Google Docs

Leave comment if you have any trouble or feedback.                    

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

Tên Bionic Reading - Focused Bionic Reading - Focused
ID hijmanikokojondnhbdfmbkopdafmlgj
URL Chính Thức https://chromewebstore.google.com/detail/bionic-reading-focused/hijmanikokojondnhbdfmbkopdafmlgj
Mô tả Faster Better and More Focused Reading
Kích Thước Tệp 26.52 KB
Số Lần Cài Đặt 2,641
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-06-01
Ngày Phát Hành 2022-05-25
Đánh Giá 4.60/5 Tổng số 15 Đánh Giá
Nhà Phát Triển lionjs.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggleAutouse": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            },
            "description": "Turn bionic reading autouse on or off."
        },
        "toggleFontColor": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Toggle font color between inherit and white."
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Faster Better and More Focused Reading",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "manifest_version": 3,
    "name": "Bionic Reading - Focused",
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "version": "1.2.0"
}