Smart Reader - Bionic Reader

Modify a web page to make it more readable

¿Qué es Smart Reader - Bionic Reader?

Smart Reader - Bionic Reader es una extensión de Chrome desarrollada por Poucous, y su función principal es "Modify a web page to make it more readable".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Smart Reader - Bionic Reader

Descarga archivos de extensión Smart Reader - Bionic Reader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Smart Reader - Bionic Reader Smart Reader - Bionic Reader
ID cgkfhliknoajpncfpnbmknalklgiekdj
URL Oficial https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj
Descripción Modify a web page to make it more readable
Tamaño del Archivo 84.48 KB
Cantidad de Instalaciones 1,057
Versión Actual 1.6
Última Actualización 2022-10-05
Fecha de Publicación 2022-06-07
Calificación 3.50/5 Total de 6 Calificaciones
Desarrollador Poucous
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    }
}