Award_Fix

Steam打赏修复

  1. // ==UserScript==
  2. // @name Award_Fix
  3. // @namespace https://blog.chrxw.com
  4. // @version 1.1
  5. // @description Steam打赏修复
  6. // @author Chr_
  7. // @include /https://steamcommunity\.com/(id|profiles)/[^\/]+/recommended\/?(\?p=\d+)?$/
  8. // @connect steamcommunity.com
  9. // @connect steampowered.com
  10. // @license AGPL-3.0
  11. // @icon https://blog.chrxw.com/favicon.ico
  12. // @grant GM_setValue
  13. // @grant GM_getValue
  14. // @grant GM_xmlhttpRequest
  15. // ==/UserScript==
  16.  
  17. (function () {
  18. 'use strict';
  19. let ts = document.querySelectorAll('.review_award_ctn');
  20. if (ts) {
  21. for (let t of ts) {
  22. t.style.flexWrap = 'wrap';
  23. }
  24. }
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址