Steam | Hide Sensitive Data

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

  1. // ==UserScript==
  2. // @name Steam | Hide Sensitive Data
  3. // @name:uk Steam | Приховати приватну інформацію
  4. // @namespace http://tampermonkey.net/
  5. // @version 33.1.0
  6. // @description Will hide (blur) sensitive data. Remove blur effect on hover.
  7. // @description:uk Приховає (блюр) приватну інформацію. Еффект спаде при наведені на елемент.
  8. // @author Black_Yuzia
  9. // @match https://steamcommunity.com/*
  10. // @match https://*.steampowered.com/*
  11. // @icon https://store.steampowered.com/favicon.ico
  12. // @grant GM_addStyle
  13. // @run-at document-start
  14. // @license CC BY-NC-ND 4.0
  15. // @license-url https://creativecommons.org/licenses/by-nc-nd/4.0/
  16. // @compatible firefox
  17. // @compatible chrome
  18. // @compatible opera
  19. // @compatible safari
  20. // @compatible edge
  21. // ==/UserScript==
  22.  
  23. (function () {
  24. 'use strict';
  25.  
  26. GM_addStyle(`
  27. #header_wallet_balance,
  28. .accountData.price,
  29. #total_expenses,
  30. .account_data_field,
  31. .wht_wallet_balance.wallet_column,
  32. .account_name,
  33. #marketWalletBalanceAmount,
  34. .help_intro_text,
  35. .responsive_menu_user_wallet,
  36. .youraccount_steamid,
  37. .OpenID_loggedInAccount,
  38. #review_account_body
  39. {
  40. filter: blur(5px);
  41. }
  42.  
  43. .youraccount_pageheader {
  44. filter: blur(12px)
  45. }
  46.  
  47. #header_wallet_balance:hover,
  48. .accountData.price:hover,
  49. #total_expenses:hover,
  50. .account_data_field:hover,
  51. .wht_wallet_balance.wallet_column:hover,
  52. .account_name:hover,
  53. #marketWalletBalanceAmount:hover,
  54. .help_intro_text:hover,
  55. .responsive_menu_user_wallet:hover,
  56. .youraccount_steamid:hover,
  57. .youraccount_pageheader:hover,
  58. .OpenID_loggedInAccount:hover,
  59. #review_account_body:hover
  60. {
  61. filter: none;
  62. }
  63. `)
  64. })();