Bionic Reader

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

What is Bionic Reader?

Bionic Reader is a Chrome extension developed by 1mustafaersoy, and its main feature is "This extension allows you to read the content of a webpage from Bionic way.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Bionic Reader Extension CRX File

Download Bionic Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
Official URL https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Description This extension allows you to read the content of a webpage from Bionic way.
File Size 786 KB
Installation Count 101
Current Version 0.1
Last Updated 2022-05-24
Publish Date 2022-05-23
Developer 1mustafaersoy
Email [email protected]
Payment Type free
Supported Languages 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": [
        ""
    ]
}