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
Eメール [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": [
        ""
    ]
}