Coursera Translate
Coursera Translate allows you to automatically translate subtitles on Coursera to any language.
什麼是Coursera Translate?
Coursera Translate是由artem.sinin開發的Chrome擴展程式,該擴展的主要功能是“Coursera Translate allows you to automatically translate subtitles on Coursera to any language.”。
擴展截圖
下載Coursera Translate擴展crx文件
下載Coursera Translate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Coursera Translate allows you to automatically translate subtitles on Coursera to any language.
擴展基本資訊
名稱 | Coursera Translate |
ID | niigbaamompjfenpngcbenboddklpkeg |
官方網址 | 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" ] } } |