Bionic Reader

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

Vad är Bionic Reader?

Bionic Reader är en Chrome-tillägg utvecklad av 1mustafaersoy, och dess huvudfunktion är "This extension allows you to read the content of a webpage from Bionic way.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Bionic Reader-förlängningens CRX-fil

Ladda ner Bionic Reader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
Officiell webbadress https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Beskrivning This extension allows you to read the content of a webpage from Bionic way.
Filstorlek 786 KB
Antal Installationer 101
Aktuell Version 0.1
Senast Uppdaterad 2022-05-24
Publiceringsdatum 2022-05-23
Utvecklare 1mustafaersoy
E-post [email protected]
Betalningssätt free
Stödda Språk 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": [
        ""
    ]
}