try to take over the world!
当前为
// ==UserScript==
// @name 优酷全屏快捷键(F键)
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Lu Xi
// @match https://v.youku.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var i=0
document.onkeydown=function(e){
var keyNum=window.event ? e.keyCode :e.which;
if(keyNum==70 && i==0){
document.getElementsByClassName("control-icon control-fullscreen-icon")[0].click()
i=1
}
else if (keyNum==70 && i==1) {
document.getElementsByClassName("control-icon control-halfscreen-icon")[0].click()
i=0
}
}
// Your code here...
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址