Greasy Fork is available in English.

Echo360 Enhanced (功能增强)

显示Echo360视频时间/点击屏幕播放暂停 Show current time / Click on the screen to play

// ==UserScript==
// @name         Echo360 Enhanced (功能增强)
// @namespace    http://echo360.so/why_the_website_is_so_terrible/
// @version      0.1
// @description  显示Echo360视频时间/点击屏幕播放暂停 Show current time / Click on the screen to play
// @name:en      Echo360 Enhanced
// @description:en    Show current time / Click on the screen to play
// @author       Yui
// @include      *echo360.*/lesson/*
// @icon         https://www.google.com/s2/favicons?domain=echo360.org.uk
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    try{$('.screens')[0].addEventListener("click",(()=>{$('.play-btn')[0].click();}));$('.currTime')[0].style.display='inline'}catch(error){window.onload=function(){console.log('cache not exist');$('.screens')[0].addEventListener("click",(()=>{$('.play-btn')[0].click();}));$('.currTime')[0].style.display='inline'}}
})();