您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Immediately and automatically hide animations on the prolific studies page.
// ==UserScript== // @name Auto Disable Animations on Prolific // @namespace mailto:[email protected] // @version 0.1 // @description Immediately and automatically hide animations on the prolific studies page. // @author LauraIsBestFox! // @include https://*.prolific.co/* // ==/UserScript== (function() { //check to see if there's an animation on page, disable if there is var checkAnimation = setInterval(function() { try{ var toggle_animation = document.getElementsByClassName("toggle-animation")[0]; if(typeof(toggle_animation) != 'undefined' && toggle_animation != null){ if(toggle_animation.innerText.match("Disable animation")){ toggle_animation.click(); } else if (toggle_animation.innerText.match("Enable animation")){ toggle_animation.innerText = ""; clearInterval(checkAnimation); } } } catch(err) { } }, 10); })();