Bionic Reader

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

Bionic Reader là gì?

Bionic Reader là một tiện ích mở rộng Chrome được phát triển bởi 1mustafaersoy, và tính năng chính của nó là "This extension allows you to read the content of a webpage from Bionic way.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bionic Reader

Tải xuống các tệp mở rộng Bionic Reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
URL Chính Thức https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
Mô tả This extension allows you to read the content of a webpage from Bionic way.
Kích Thước Tệp 786 KB
Số Lần Cài Đặt 101
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2022-05-23
Nhà Phát Triển 1mustafaersoy
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}