discord 自動點箭頭by ㄐㄐ人

會自己點箭頭

目前為 2023-04-09 提交的版本,檢視 最新版本

// ==UserScript==
// @name         discord 自動點箭頭by ㄐㄐ人
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  會自己點箭頭
// @author       ㄐㄐ人
// @match        *://*.discord.com/channels/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=discord.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function autoClick() {
      var element = document.querySelector('.reactionInner-YJjOtT[aria-pressed="false"]');
      if (element && element.getAttribute('aria-label').includes('arrow')) {
        element.click();
        console.log("done");
      }
    }

setInterval(autoClick, 1000);
})();