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
官方網址 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": [
        ""
    ]
}