您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Since Flash seems to eat up all the memory, this will proactively close the tab and open a new one - giving it a clean slate.
当前为
// ==UserScript== // @name EngageMe.TV Flash Memory Protector // @namespace https://gf.qytechs.cn/users/57063 // @version 0.1 // @description Since Flash seems to eat up all the memory, this will proactively close the tab and open a new one - giving it a clean slate. // @author free21 // @match http://engageme.tv/watchrv.php* // @grant window.close // ==/UserScript== (function() { var enCount = 0; jwplayer().on('adComplete', function(event){ enCount++; console.log(enCount); if (enCount > 60) { window.open(window.location.href); window.close(); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址