Unblur workshop

Unblur steam workshop items in China.

  1. // ==UserScript==
  2. // @name Unblur workshop
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.1
  5. // @description Unblur steam workshop items in China.
  6. // @author Remiliacn
  7. // @match https://steamcommunity.com/id/*/home
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=steamcommunity.com
  9. // @grant none
  10. // @license GNU GPLv3
  11. // ==/UserScript==
  12.  
  13. function work() {
  14. const censoredNodes = Array.from(document.querySelectorAll('.ugc.has_adult_content'));
  15. censoredNodes.forEach(node => {
  16. const child = node ? node.children[0] : null;
  17. if (child) {
  18. child.style.filter = 'none';
  19. }
  20. });
  21. }
  22.  
  23. (function() {
  24. 'use strict';
  25.  
  26. setInterval(work, 10000);
  27. })();

QingJ © 2025

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