// ==UserScript== // @name 天天游戏网免密钥获取资源 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 天天游戏网免除密钥获取资源 // @author jflmao // @match *://kaihu123.cn/* // @icon https://kaihu123.cn/logo.png // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var m = "m=1"; var ca = document.cookie; if (ca.indexOf(m)==-1) { var exp = new Date(); exp.setTime(exp.getTime() + 24*60*60*1000); document.cookie = "m=1" + ";expires=" + exp.toGMTString(); console.log("注入成功!"); javascript:location.reload(); } })();