Greasy Fork

腾讯云保活,微信公众号保活

腾讯云保活+微信公众号-定时刷新页面token保活

// ==UserScript==
// @name         腾讯云保活,微信公众号保活
// @namespace    http://tampermonkey.net/
// @license      MIT
// @version      0.2
// @description  腾讯云保活+微信公众号-定时刷新页面token保活
// @author       You
// @match        https://console.cloud.tencent.com/*
// @match        https://mp.weixin.qq.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(() => {
      location.reload();
    }, 1000 * 60 * 60 * 1.5);
    // Your code here...
})();