Bionic Converter

Chrome extension for Bionic Reading (https://bionic-reading.com)

Bionic Converter là gì?

Bionic Converter là một tiện ích mở rộng Chrome được phát triển bởi Pixel Prefect, và tính năng chính của nó là "Chrome extension for Bionic Reading (https://bionic-reading.com)".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Bionic Converter 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 uses the Bionic Reading API to convert web pages to the Bionic Reading format. 

A Bionic Reading API key is required, which can be obtained for free from bionic-reading.com. 

This extension is not affiliated with Bionic Reading GmbH.                    

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

Tên Bionic Converter Bionic Converter
ID aghdfgeepkhlnpnohgiennjpkidkodnb
URL Chính Thức https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb
Mô tả Chrome extension for Bionic Reading (https://bionic-reading.com)
Kích Thước Tệp 55.09 KB
Số Lần Cài Đặt 515
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-06-03
Ngày Phát Hành 2022-05-23
Nhà Phát Triển Pixel Prefect
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://pixel-prefect.com
URL Trang Chính Sách Bảo Mật https://pixel-prefect.com/bionic-reader
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Converter",
    "description": "Chrome extension for Bionic Reading (https:\/\/bionic-reading.com)",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "Pixel Prefect",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-48.png",
        "128": "\/images\/logo-128.png"
    },
    "options_page": "src\/options.html",
    "background": {
        "service_worker": "src\/scripts\/background.js"
    },
    "action": {
        "default_title": "Activate bionic reading for page",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-48.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/styles\/main.css"
            ],
            "js": [
                "src\/scripts\/constants.js",
                "src\/scripts\/functions.js"
            ]
        }
    ]
}