Will hide (blur) sensitive data. Remove blur effect on hover.
当前为
// ==UserScript==
// @name Steam | Hide Sensitive Data
// @name:uk Steam | Заблюрити приватну інформацію
// @namespace http://tampermonkey.net/
// @version 27.12.2023
// @description Will hide (blur) sensitive data. Remove blur effect on hover.
// @description:uk Приховає (блюр) приватну інформацію. Еффект спаде при наведені на елемент.
// @author Black_Yuzia
// @match https://steamcommunity.com/*
// @match https://*.steampowered.com/*
// @icon https://store.steampowered.com/favicon.ico
// @grant GM_addStyle
// @run-at document-start
// @license CC BY-NC-ND 4.0
// @license-url https://creativecommons.org/licenses/by-nc-nd/4.0/
// ==/UserScript==
(function () {
'use strict';
GM_addStyle(`
#header_wallet_balance,
.accountData.price,
#total_expenses,
.account_data_field,
.wht_wallet_balance.wallet_column,
.account_name,
#marketWalletBalanceAmount,
.help_intro_text
{
filter: blur(5px);
}
#header_wallet_balance:hover,
.accountData.price:hover,
#total_expenses:hover,
.account_data_field:hover,
.wht_wallet_balance.wallet_column:hover,
.account_name:hover,
#marketWalletBalanceAmount:hover,
.help_intro_text:hover
{
filter: none;
}
`)
})();