Bionic Reader

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

¿Qué es Bionic Reader?

Bionic Reader es una extensión de Chrome desarrollada por 1mustafaersoy, y su función principal es "This extension allows you to read the content of a webpage from Bionic way.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Bionic Reader

Descarga archivos de extensión 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

                        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.                    

Información Básica de la Extensión

Nombre Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
URL Oficial https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Descripción This extension allows you to read the content of a webpage from Bionic way.
Tamaño del Archivo 786 KB
Cantidad de Instalaciones 101
Versión Actual 0.1
Última Actualización 2022-05-24
Fecha de Publicación 2022-05-23
Desarrollador 1mustafaersoy
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
        ""
    ]
}