Blur Stand Account ID and Activation Key
// ==UserScript==
// @name Stand Blur Account Info
// @version 1.0
// @description Blur Stand Account ID and Activation Key
// @author AptemCat
// @match https://stand.gg/account/
// @icon https://www.google.com/s2/favicons?sz=64&domain=stand.gg
// @grant none
// @license GNU GPLv3
// @namespace https://greasyfork.org/users/923789
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#account-id").style.filter = "blur(4px)";
document.querySelector("#activation-key").style.filter = "blur(4px)";
})();