Coursera Translate

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

What is Coursera Translate?

Coursera Translate is a Chrome extension developed by artem.sinin, and its main feature is "Coursera Translate allows you to automatically translate subtitles on Coursera to any language.".

Extension Screenshots

screenshot

Download Coursera Translate Extension CRX File

Download Coursera Translate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Coursera Translate Coursera Translate
ID niigbaamompjfenpngcbenboddklpkeg
Official URL https://chromewebstore.google.com/detail/coursera-translate/niigbaamompjfenpngcbenboddklpkeg
Description Coursera Translate allows you to automatically translate subtitles on Coursera to any language.
File Size 51.1 KB
Installation Count 482
Current Version 1.0
Last Updated 2019-01-28
Publish Date 2019-01-28
Rating 3.14/5 Total 7 Ratings
Developer artem.sinin
Payment Type free
Supported Languages 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"
        ]
    }
}