Greasy Fork is available in English.
Прямая ссылка на свои топики
// ==UserScript== // @name Tabun Self Topics Link // @version 2020.04.28 // @description Прямая ссылка на свои топики // @include http*://tabun.everypony.ru/* // @author Rainbow-Spike // @namespace https://greasyfork.org/users/7568 // @homepage https://greasyfork.org/ru/users/7568-dr-yukon // @icon https://www.google.com/s2/favicons?domain=tabun.everypony.ru // @grant none // ==/UserScript== var nav = document.querySelector ( '#dropdown-user' ), link = document.querySelector ( '#dropdown-user a' ), mess = document.createElement ( 'a' ); mess.href = link.href + 'created/topics/'; mess.setAttribute ( 'class', 'username' ); mess.innerHTML = 'Мои топики'; if ( link !== null ) nav.insertBefore ( mess, link ); // вставка топиков после аватарки