cock

cock cock cock

当前为 2021-07-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         cock
// @namespace    http://tampermonkey.net/
// @version      0.3
// @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")
            $(j).find(".forum-theme__item-avatar img").attr("src", img)
        }
    }

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

})()