您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
watches the button
// ==UserScript== // @name Button Checker // @namespace http://www.reddit.com/r/thebutton // @version 0.1 // @description watches the button // @author Marsh // @match http://www.reddit.com/r/thebutton // @grant none // ==/UserScript== var timerVar = setInterval (function() {CheckEvery5Seconds (); }, 5000); function CheckEvery5Seconds() { var tenSec = document.getElementById('thebutton-s-10s'); if (tenSec.value <= 1) { alert('Button has less than 20 seconds!'); clearInterval(timerVar); return; } }