Ribbing Reader

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

Ribbing Reader là gì?

Ribbing Reader là một tiện ích mở rộng Chrome được phát triển bởi https://www.ribbingreader.com, và tính năng chính của nó là "Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.".

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

screenshot

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

Tải xuống các tệp mở rộng Ribbing 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

                        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.                    

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

Tên Ribbing Reader Ribbing Reader
ID ipilhfnbdkfbnbnahplmimdilodohknp
URL Chính Thức https://chromewebstore.google.com/detail/ribbing-reader/ipilhfnbdkfbnbnahplmimdilodohknp
Mô tả Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.
Kích Thước Tệp 25.57 KB
Số Lần Cài Đặt 138
Phiên Bản Hiện Tại 1.0.11
Cập Nhật Lần Cuối 2017-10-17
Ngày Phát Hành 2017-10-17
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.ribbingreader.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ribbingreader.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}