F365 Links without notifications

Edit navbar

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         F365 Links without notifications
// @description  Edit navbar
// @match        http://forum.football365.com/*
// @grant        none
// @version 0.0.1.20150812101245
// @namespace https://greasyfork.org/users/14019
// ==/UserScript==

$('ul#nav-main').append('<li class="rightside"><a href="http://forum.football365.com/ucp.php?i=ucp_main&mode=bookmarks">Bookmarks</a></li><li class="rightside"><a href="http://forum.football365.com/search.php?search_id=egosearch">View Your Posts</a></li>');
$('ul#nav-main li.icon-notification').remove();
$('.postbody .post-buttons').append('<li><a class="button icon-button reply-icon" title="Post reply" href="'+$('.action-bar .reply-icon').attr('href')+'"><span>Reply</span> </a> </li>');
$('.section-search .topiclist .row .list-inner').each(function () {
    $(this).html($(this).html().substring(0,$(this).html().lastIndexOf("by <a")))
});