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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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