Greasy Fork

Greasy Fork is available in English.

DGG - Auto refresh chat

2024-11-21, refresh DGG chat periodically to disable Jaydr's crypto miner

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        DGG - Auto refresh chat
// @namespace   Jaydr please stop
// @match       https://www.destiny.gg/bigscreen
// @match       https://www.destiny.gg/bigscreen*
// @match       https://www.destiny.gg/embed/chat
// @match       https://www.omniliberal.dev/bigscreen
// @match       https://www.omniliberal.dev/bigscreen*
// @match       https://www.omniliberal.dev/embed/chat
// @grant       none
// @version     0.1
// @author      mif
// @license     MIT
// @description 2024-11-21, refresh DGG chat periodically to disable Jaydr's crypto miner
// ==/UserScript==

(function () {
  'use strict';
  var clicker = function () {
    var e = document.getElementById("refresh");
    if (e) {
      // console.log("Found Button");
      e.click();
      // document.getElementById("refresh").click()
    } else {
      // console.log("No Button found");
      location.replace(location.href);
    }
    // console.log("REFRESHING CHAT OOOO")
  };
  window.setInterval(clicker, 1000*60*60); // 1 ms * 60 seconds * 60 minutes = once per hour
})();