Smart Reader - Bionic Reader

Modify a web page to make it more readable

O que é Smart Reader - Bionic Reader?

Smart Reader - Bionic Reader é uma extensão do Chrome desenvolvida por Poucous, e sua principal característica é "Modify a web page to make it more readable".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Smart Reader - Bionic Reader

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

                        SmartReader or Bionic Reader changes a web page to make it more readable by bolding the beginning of a word (like bionic reading).

You just need to install and enjoy.

Github : https://github.com/Poucous/smartReader

Note : the extension will evolve according to its use                    

Informações Básicas da Extensão

Nome Smart Reader - Bionic Reader Smart Reader - Bionic Reader
ID cgkfhliknoajpncfpnbmknalklgiekdj
URL Oficial https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj
Descrição Modify a web page to make it more readable
Tamanho do Arquivo 84.48 KB
Contagem de Instalações 1,057
Versão Atual 1.6
Última Atualização 2022-10-05
Data de Publicação 2022-06-07
Classificação 3.50/5 Total de 6 Avaliações
Desenvolvedor Poucous
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart Reader - Bionic Reader",
    "manifest_version": 3,
    "version": "1.6",
    "description": "Modify a web page to make it more readable",
    "icons": {
        "48": "\/icons\/smartReader-48.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/content_scripts\/assembleElements.js",
                "\/content_scripts\/filterElements.js",
                "\/content_scripts\/isThisTag.js",
                "\/content_scripts\/modifyHtml.js",
                "\/content_scripts\/removeBold.js",
                "\/content_scripts\/textAtRoot.js",
                "\/content_scripts\/isAddonActived.js",
                "\/content_scripts\/isItLetter.js",
                "\/content_scripts\/updatePage.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "\/icons\/button\/smartReader-16.png",
            "32": "\/icons\/button\/smartReader-32.png"
        }
    }
}