为集游社(jiyoushe.cn)云游戏页面提供计时器(代替网页标题)
// ==UserScript== // @name 集游社云游戏计时器 // @version 0.2 // @author Aynxul03 (Ayx Blog: https://ablo.ga/) // @license GPLv3 // @namespace http://diveintogreasemonkey.org/download/ // @description 为集游社(jiyoushe.cn)云游戏页面提供计时器(代替网页标题) // @match https://www.jiyoushe.cn/pcplay.html // @match https://www.jiyoushe.cn/webplay.html // @match https://www.jiyoushe.cn/cloudplayweb // ==/UserScript== var time = 0; var interval = 1000; var timer = setInterval(function(){ time += interval; var hr = Math.floor(time / 3600000); var min = Math.floor((time % 3600000) / 60000); var sec = Math.floor((time % 60000) / 1000); document.title = "已打开" + hr + "时" + min + "分" + sec + "秒"; }, interval);