Automatically focus text box when entering the tab
// ==UserScript==
// @name Discord Auto-Focus Text Box
// @namespace http://ewan.horse/
// @license MIT
// @version 0.1
// @description Automatically focus text box when entering the tab
// @author Ewan Green
// @match https://discord.com/channels/*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener("visibilitychange", function() {
if (document.visibilityState == "visible") {
const box = document.getElementsByTagName("textarea")[0];
box.focus();
}
})
})();