Greasy Fork is available in English.

Torn Remove RR Acts of Courage

Removes the x2 and x3 'Acts of Courage' from Russian Roulette games

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Torn Remove RR Acts of Courage
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Removes the x2 and x3 'Acts of Courage' from Russian Roulette games
// @author       pawl[1821105]
// @match        https://www.torn.com/page.php?sid=russianRoulette*
// @icon         https://www.google.com/s2/favicons?domain=torn.com
// @grant        GM_addStyle

// ==/UserScript==

(function() {
    'use strict';

    console.log("Torn Remove RR Acts of Courage started");

    GM_addStyle(`
        [data-id="2"], [data-id="3"] {
            display: none !important;
        }
    `);
})();