Bionic Reader

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

Cos'è Bionic Reader?

Bionic Reader è un'estensione di Chrome sviluppata da 1mustafaersoy, e la sua funzione principale è "This extension allows you to read the content of a webpage from Bionic way.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Bionic Reader

Scarica i file di estensione Bionic Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
URL Ufficiale https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Descrizione This extension allows you to read the content of a webpage from Bionic way.
Dimensione del File 786 KB
Conteggio Installazioni 101
Versione Corrente 0.1
Ultimo Aggiornamento 2022-05-24
Data di Pubblicazione 2022-05-23
Sviluppatore 1mustafaersoy
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
        ""
    ]
}