// ==UserScript== // @name autounping // @namespace Violentmonkey Scripts // @match *://discord.com/* // @grant none // @version 1.1 // @author - // @description 4/21/2021, 6:00:42 PM // @noframes // ==/UserScript== /* jshint esversion: 6 */ (function() { 'use strict'; var skipper = setInterval(function() { let mentionButtons = document.querySelectorAll('[aria-label="Mention"]'); if(mentionButtons.length > 0) { let grandparent = mentionButtons[0].parentNode.parentNode; let didManuallyClick = (grandparent.getAttribute('aria-checked') != null && grandparent.getAttribute('aria-checked') == 'false'); if (grandparent && !didManuallyClick) { console.log('unpinging'); grandparent.click(); } } }, 500); })();