Bionic Reader

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

Was ist Bionic Reader?

Bionic Reader ist eine Chrome-Erweiterung, die von 1mustafaersoy entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to read the content of a webpage from Bionic way.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Bionic Reader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bionic Reader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
Offizielle URL https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Beschreibung This extension allows you to read the content of a webpage from Bionic way.
Dateigröße 786 KB
Installationsanzahl 101
Aktuelle Version 0.1
Letztes Update 2022-05-24
Veröffentlichungsdatum 2022-05-23
Entwickler 1mustafaersoy
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
        ""
    ]
}