Tabun SelfLink

Прямая ссылка на свои топики

目前为 2015-02-13 提交的版本。查看 最新版本

// ==UserScript==
// @name           Tabun SelfLink
// @description    Прямая ссылка на свои топики
// @include        http://tabun.everypony.ru/*
// @grant          none
// @version 0.0.1.20150213050612
// @namespace https://greasyfork.org/users/7568
// ==/UserScript==

var nav = document.getElementById('dropdown-user'),
    link = nav.getElementsByTagName('a')[0],
    mess = document.createElement('a'),
    text = document.createTextNode("Мои топики");
mess.href = link.href + 'created/topics/';
mess.setAttribute('class', 'username');
mess.appendChild(text);
nav.insertBefore(mess, link.nextSibling);