cock

cock cock cock

// ==UserScript==
// @name         cock
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  cock cock cock
// @author       S30N1K
// @match        https://dota2.ru/*
// @grant        none
// ==/UserScript==

(() => {

    const img = "https://i.ibb.co/XZTNdRN/482968.gif"

    if (/\/forum\/threads\//.test(window.location.pathname)){
        for (const j of $(".forum-theme__list > li")) {
            $(j).find(".forum-theme__item-left-mob > a").html("cock")
        }
    }

    for (const e of $(".forum-theme__list img")){
        $(e).attr("src", img)
    }

})()