Ribbing Reader

Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.

Что такое Ribbing Reader?

Ribbing Reader - это расширение Chrome, разработанное https://www.ribbingreader.com, и его основная функция - "Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.".

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

screenshot

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

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

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

                        Automatic subtitles in your browser, using speech-to-text technology. The tool supports 32 languages and a number of dialects. Perfect for live presentations and in the classroom.                    

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

Название Ribbing Reader Ribbing Reader
ID ipilhfnbdkfbnbnahplmimdilodohknp
Официальный URL https://chromewebstore.google.com/detail/ribbing-reader/ipilhfnbdkfbnbnahplmimdilodohknp
Описание Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.
Размер файла 25.57 KB
Количество установок 138
Текущая Версия 1.0.11
Последнее Обновление 2017-10-17
Дата публикации 2017-10-17
Рейтинг 4.50/5 Всего 2 оценок
Разработчик https://www.ribbingreader.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.ribbingreader.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ribbing Reader",
    "short_name": "Ribbing",
    "description": "Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.",
    "version": "1.0.11",
    "homepage_url": "http:\/\/www.ribbingreader.com",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                ""
            ],
            "js": [
                "Subtitles.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup.html",
        "default_title": "Ribbing Reader"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "subtitles.html",
        "subtitles.css"
    ]
}