Remove steam spoilers

removes spoiler censoring from steam

2025-04-02 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Remove steam spoilers
// @namespace    http://tampermonkey.net/
// @version      2025-04-02 Ver 1
// @description  removes spoiler censoring from steam
// @author       FishCat2431 on discord
// @match        https://steamcommunity.com/sharedfiles/filedetails/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=steamcommunity.com
// @grant        none
// @license      GNU GPLv3 https://choosealicense.com/licenses/gpl-3.0/
// ==/UserScript==

(function() {
    'use strict';

    document.querySelectorAll('.bb_spoiler').forEach(element => {element.classList.remove('bb_spoiler');});
    // simple right???
})();