Greasy Fork is available in English.
为手机浏览器添加触摸手势,即装即用,无需配置😎。拥有超多通用手势满足你的需求,还设计有对📝文字、🖼️图片、🎥视频交互的特殊手势💪。还想要更多😱?支持添加属于你的个性化手势,更有隐藏功能等待你的发现😏!推荐使用狐猴浏览器、Edge浏览器和Yandex浏览器。
这个和双击退出全屏冲突,而且软件自带这个功能,你将双击全屏的代码删除即可。
删除下面这一段即可,你可以用webkitFullscreenElement作为关键词查找。
else{
if(document.webkitFullscreenElement){
e.preventDefault();
document.webkitExitFullscreen();
setTimeout(function(){
Ti=document.createElement('input');
document.body.appendChild(Ti);
Ti.setAttribute('value',videoPlayer.src);
Ti.select();
document.execCommand('copy');
document.body.removeChild(Ti);
},500);
}
else if(videoPlayer){videoPlayer.webkitRequestFullScreen();}
else if(iframeEle.length>0){GM_setValue('fullscreen',Date());}
大佬,能不能添加一个双击屏幕左右两侧前进或者后退10s的功能?感恩!