Bionic Reading - Focused

Faster Better and More Focused Reading

O que é Bionic Reading - Focused?

Bionic Reading - Focused é uma extensão do Chrome desenvolvida por lionjs.com, e sua principal característica é "Faster Better and More Focused Reading".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Bionic Reading - Focused

Baixe arquivos de extensão Bionic Reading - Focused no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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.                    

Informações Básicas da Extensão

Nome Bionic Reading - Focused Bionic Reading - Focused
ID hijmanikokojondnhbdfmbkopdafmlgj
URL Oficial https://chromewebstore.google.com/detail/bionic-reading-focused/hijmanikokojondnhbdfmbkopdafmlgj
Descrição Faster Better and More Focused Reading
Tamanho do Arquivo 26.52 KB
Contagem de Instalações 2,641
Versão Atual 1.2.0
Última Atualização 2022-06-01
Data de Publicação 2022-05-25
Classificação 4.60/5 Total de 15 Avaliações
Desenvolvedor lionjs.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
}