Bionic Text Converter

An extension that converts the text on the page into bionic text by using Bionic-reading API and it's SDK provided by APIMatic!

Что такое Bionic Text Converter?

Bionic Text Converter - это расширение Chrome, разработанное cextensionsapimatic, и его основная функция - "An extension that converts the text on the page into bionic text by using Bionic-reading API and it's SDK provided by APIMatic!".

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

screenshot

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

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

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

                        It converts all the text on any page into bionic text and it's purpose is to improve reading for the user, it's ideal use is while reading blogs and articles.

Here is the public repository of this extension, feel free to checkout APIMatic's Typescript SDK integration with the Bionic-Reading API :
https://github.com/Muhammad-Sajjad/bionic-text-converter-chrome-extension                    

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

Название Bionic Text Converter Bionic Text Converter
ID icddijkgidfpgagelhkjpcniaaabjipj
Официальный URL https://chromewebstore.google.com/detail/bionic-text-converter/icddijkgidfpgagelhkjpcniaaabjipj
Описание An extension that converts the text on the page into bionic text by using Bionic-reading API and it's SDK provided by APIMatic!
Размер файла 90.41 KB
Количество установок 1,987
Текущая Версия 2.0
Последнее Обновление 2022-06-16
Дата публикации 2022-06-05
Рейтинг 3.00/5 Всего 3 оценок
Разработчик cextensionsapimatic
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/Muhammad-Sajjad/bionic-text-converter-chrome-extension
URL страницы политики конфиденциальности https://www.privacypolicygenerator.info/live.php?token=EBGMvI1G6gPJbTfU4jeljfyHeYz1yG33
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Text Converter",
    "description": "An extension that converts the text on the page into bionic text by using Bionic-reading API and it's SDK provided by APIMatic!",
    "version": "2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/logo.png",
            "32": "\/assets\/logo.png",
            "48": "\/assets\/logo.png",
            "128": "\/assets\/logo.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ]
}