Steam | Hide Sensitive Data

Will hide (blur) sensitive data. Remove blur effect on hover.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Steam | Hide Sensitive Data
// @name:uk         Steam | Приховати приватну інформацію
// @namespace       http://tampermonkey.net/
// @version         33.1.0
// @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/
// @compatible      firefox
// @compatible      chrome
// @compatible      opera
// @compatible      safari
// @compatible      edge
// ==/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,
    .responsive_menu_user_wallet,
    .youraccount_steamid,
    .OpenID_loggedInAccount,
    #review_account_body
    {
        filter: blur(5px);
    }

    .youraccount_pageheader {
    filter: blur(12px)
    }

    #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,
    .responsive_menu_user_wallet:hover,
    .youraccount_steamid:hover,
    .youraccount_pageheader:hover,
    .OpenID_loggedInAccount:hover,
    #review_account_body:hover
    {
        filter: none;
    }
    `)
})();