Coursera Translate

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

Wat is Coursera Translate?

Coursera Translate is een Chrome-extensie ontwikkeld door artem.sinin, en de belangrijkste functie is "Coursera Translate allows you to automatically translate subtitles on Coursera to any language.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Coursera Translate

Download Coursera Translate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Coursera Translate Coursera Translate
ID niigbaamompjfenpngcbenboddklpkeg
Officiële URL https://chromewebstore.google.com/detail/coursera-translate/niigbaamompjfenpngcbenboddklpkeg
Beschrijving Coursera Translate allows you to automatically translate subtitles on Coursera to any language.
Bestandsgrootte 51.1 KB
Aantal Installaties 482
Huidige Versie 1.0
Laatst Bijgewerkt 2019-01-28
Publicatiedatum 2019-01-28
Beoordeling 3.14/5 Totaal 7 Beoordelingen
Ontwikkelaar artem.sinin
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}