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"
    ]
}