Coursera Translate

Coursera Translate allows you to automatically translate subtitles on Coursera to any language.

Coursera Translateคืออะไร?

Coursera Translate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย artem.sinin และคุณลักษณะหลักของมันคือ "Coursera Translate allows you to automatically translate subtitles on Coursera to any language."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coursera Translate

ดาวน์โหลดไฟล์ส่วนขยาย Coursera Translate ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Coursera Translate allows you to automatically translate subtitles on Coursera to any language.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Coursera Translate Coursera Translate
ID niigbaamompjfenpngcbenboddklpkeg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/coursera-translate/niigbaamompjfenpngcbenboddklpkeg
คำอธิบาย Coursera Translate allows you to automatically translate subtitles on Coursera to any language.
ขนาดไฟล์ 51.1 KB
จำนวนการติดตั้ง 482
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-01-28
วันที่เผยแพร่ 2019-01-28
คะแนน 3.14/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา artem.sinin
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera Translate",
    "version": "1.0",
    "icons": {
        "16": "ct16.png",
        "32": "ct32.png",
        "48": "ct48.png",
        "128": "ct128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.coursera.org\/*",
                "https:\/\/coursera.org\/*",
                "http:\/\/www.oursera.org\/*",
                "http:\/\/coursera.org\/*",
                "https:\/\/www.coursera.com\/*",
                "https:\/\/coursera.com\/*",
                "http:\/\/www.oursera.com\/*",
                "http:\/\/coursera.com\/*"
            ],
            "css": [
                "ctStyle.css"
            ],
            "js": [
                "jquery.min.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/translate.yandex.net\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "Cousera Translate",
        "default_icon": "ct48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}