您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tells you if you aren't logged in anymore
// ==UserScript== // @name 10ff Logout Message // @namespace http://tampermonkey.net/ // @version 0.111 // @description tells you if you aren't logged in anymore // @author Ayasu/godsblade // @match *://10fastfingers.com/typing-test/* // @match *://10fastfingers.com/widget* // @match *://10fastfingers.com/competition/* // @match *://10fastfingers.com/advanced-typing-test/* // @match *://10fastfingers.com/top1000/* // @grant none // ==/UserScript== setInterval(function() { var cookies = document.cookie; if (!(cookies.includes("CakeCookie[remember_me_cookie]"))) { var notLoggedInEle = document.getElementById("notLoggedIn"); if(!notLoggedInEle){ $('#words').before("<div id='notLoggedIn'></div>"); } $('#notLoggedIn').html("Might not be logged in anymore..."); document.getElementById("notLoggedIn").style.color = "red"; document.getElementById("notLoggedIn").style.fontSize = "2em"; document.getElementById("notLoggedIn").style.textAlign = "center"; } else { var notLoggedInEle = document.getElementById("notLoggedIn"); if(notLoggedInEle){ notLoggedInEle.remove(); } } } , 100);