Bionic Reader

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

Hvad er Bionic Reader?

Bionic Reader er en Chrome-udvidelse udviklet af 1mustafaersoy, og dens hovedfunktion er "This extension allows you to read the content of a webpage from Bionic way.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Bionic Reader-udvidelses-CRX-fil

Download Bionic Reader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
Officiel URL https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Beskrivelse This extension allows you to read the content of a webpage from Bionic way.
Filstørrelse 786 KB
Antal Installationer 101
Nuværende Version 0.1
Senest Opdateret 2022-05-24
Udgivelsesdato 2022-05-23
Udvikler 1mustafaersoy
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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": [
        ""
    ]
}