Bionic Reader

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

什么是Bionic Reader?

Bionic Reader是由1mustafaersoy开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to read the content of a webpage from Bionic way.”。

扩展截图

screenshot
screenshot
screenshot

下载Bionic Reader扩展crx文件

下载Bionic Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
官方URL https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
简介 This extension allows you to read the content of a webpage from Bionic way.
文件大小 786 KB
安装次数 101
当前版本 0.1
更新时间 2022-05-24
上架时间 2022-05-23
开发者 1mustafaersoy
电子邮箱 [email protected]
付费类型 free
支持的语言 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": [
        ""
    ]
}