Greasy Fork is available in English.
拳打李未,脚踢冰寒ƪ(˘⌣˘)ʃ
// ==UserScript==
// @name 拳打李未,脚踢冰寒
// @version 4.7.1
// @author Le_le
// @description 拳打李未,脚踢冰寒ƪ(˘⌣˘)ʃ
// @license MIT
// @match *://*.zhihuishu.com/*
// @match *://*.chaoxing.com/*
// @match *://*.edu.cn/*
// @match *://*.org.cn/*
// @match *://*.xueyinonline.com/*
// @match *://*.hnsyu.net/*
// @match *://*.qutjxjy.cn/*
// @match *://*.ynny.cn/*
// @match *://*.icve.com.cn/*
// @match *://*.course.icve.com.cn/*
// @match *://*.courshare.cn/*
// @match *://*.zjy2.icve.com.cn/*
// @match *://*.zyk.icve.com.cn/*
// @match *://*.icourse163.org/*
// @grant GM_info
// @grant GM_registerMenuCommand
// @run-at document-end
// @namespace https://enncy.cn
// @homepage https://docs.ocsjs.com
// @source https://github.com/ocsjs/ocsjs
// @icon https://cdn.ocsjs.com/logo.png
// ==/UserScript==
(function () {
GM_registerMenuCommand('翻转视频',rotatevideo)
})();
function rotatevideo(){
var video = document.getElementsByTagName('iframe')[0];
console.log(video);
if(video.style.transform=='rotate(180deg)'){
video.style.transform='rotate(0deg)';
}
else{
video.style.transform='rotate(180deg)';
}
video.style.transition = 'all 1s';
}