Bionic Reader

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

Co to jest Bionic Reader?

Bionic Reader to rozszerzenie Chrome opracowane przez 1mustafaersoy, a jego główną funkcją jest „This extension allows you to read the content of a webpage from Bionic way.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bionic Reader

Pobierz pliki rozszerzeń Bionic Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
Oficjalny URL https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Opis This extension allows you to read the content of a webpage from Bionic way.
Rozmiar pliku 786 KB
Liczba instalacji 101
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2022-05-24
Data Publikacji 2022-05-23
Deweloper 1mustafaersoy
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": [
        ""
    ]
}