Bionic Converter

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

Что такое Bionic Converter?

Bionic Converter - это расширение Chrome, разработанное Pixel Prefect, и его основная функция - "Chrome extension for Bionic Reading (https://bionic-reading.com)".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Bionic Converter

Скачайте файлы расширений Bionic Converter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Bionic Converter Bionic Converter
ID aghdfgeepkhlnpnohgiennjpkidkodnb
Официальный URL https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb
Описание Chrome extension for Bionic Reading (https://bionic-reading.com)
Размер файла 55.09 KB
Количество установок 515
Текущая Версия 1.0.1
Последнее Обновление 2022-06-03
Дата публикации 2022-05-23
Разработчик Pixel Prefect
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://pixel-prefect.com
URL страницы политики конфиденциальности https://pixel-prefect.com/bionic-reader
Поддерживаемые языки 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"
            ]
        }
    ]
}