removes warning from nsfw previews of workshop items
当前为
// ==UserScript==
// @name NSFW thumbnails
// @namespace http://tampermonkey.net/
// @version 0.1
// @description removes warning from nsfw previews of workshop items
// @author Arjix
// @match https://steamcommunity.com/workshop/browse/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener("load", function () {
var allWarnings = document.querySelectorAll(".ugc")
for (let i=0; i < allWarnings.length; i++) {
//let warning = allWarnings[i]
allWarnings[i].className = "ugc"
}
}, false)
})();