Bionic Reader

This extension allows you to read the content of a webpage from Bionic way.

O que é Bionic Reader?

Bionic Reader é uma extensão do Chrome desenvolvida por 1mustafaersoy, e sua principal característica é "This extension allows you to read the content of a webpage from Bionic way.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bionic Reader

Baixe arquivos de extensão Bionic Reader 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

                        This extension allows you to read the content of a webpage from Bionic way. This way you can read faster.
It is not a stable version yet. Web page appearance may be distorted or may not work properly on some pages.                    

Informações Básicas da Extensão

Nome Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
URL Oficial https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Descrição This extension allows you to read the content of a webpage from Bionic way.
Tamanho do Arquivo 786 KB
Contagem de Instalações 101
Versão Atual 0.1
Última Atualização 2022-05-24
Data de Publicação 2022-05-23
Desenvolvedor 1mustafaersoy
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Reader",
    "description": "This extension allows you to read the content of a webpage from Bionic way.",
    "version": "0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "injectedStyle.css"
            ]
        }
    ],
    "icons": {
        "128": "\/images\/icon.png"
    },
    "host_permissions": [
        ""
    ]
}