[Fix] SteamWebTools & SteamEconomyEnhancer

Fix sth

  1. // ==UserScript==
  2. // @name [Fix] SteamWebTools & SteamEconomyEnhancer
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Fix sth
  6. // @author xz
  7. // @include *://steamcommunity.com/id/*/inventory*
  8. // @include *://steamcommunity.com/profiles/*/inventory*
  9. // @include *://steamcommunity.com/market*
  10. // @include *://steamcommunity.com/tradeoffer*
  11. // @grant GM_addStyle
  12.  
  13. // ==/UserScript==
  14.  
  15. GM_addStyle (`
  16. .itemcount {
  17. /* Steam Web Tools */
  18. bottom: 0!important;
  19. left: 0!important;
  20. top: unset!important;
  21. right: unset!important;
  22. }
  23. .view_inventory_logo{
  24. /* Steam Economy Enhancer */
  25. display: block!important;
  26. }
  27. .scmpItemCheckbox{
  28. /* steam 卡牌利润最大化 */
  29. bottom: 0!important;
  30. right: 0!important;
  31. top: unset!important;
  32. left: unset!important;
  33. }
  34. `);