Greasy Fork 还支持 简体中文。

[FrostTorrents.com] Better Header

Redoes the header on FT

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         [FrostTorrents.com] Better Header
// @namespace    pxgamer
// @version      0.1
// @description  Redoes the header on FT
// @author       pxgamer
// @include      *frosttorrents.com/*
// @require      https://code.jquery.com/jquery-3.1.0.min.js
// @grant        none
// ==/UserScript==
/*jshint multistr: true */

(function() {
	'use strict';

	$('head').append('<style>body { margin: 0px; } #m_header{ height: 50px; width: 100%; background-color: white; border-bottom: 1px solid grey; margin-bottom: 10px; } #m_header ul { list-style: none; float: left; padding: 0; margin: 0; line-height: 0px; } #m_header ul li:hover { background-color: #f9f9f9; } #m_header ul li { display: block; float: left; margin: 0px; padding: 7pt 0px; } #m_header ul li a { padding: 15px; display: block; color: black; }</style>');
	$('table.main:first').replaceWith('<div id="m_header"><ul><li class="nav-btn"><a href="index.php" title=>HOME</a></li><li class="nav-btn"><a href="browse.php" title=>BROWSE</a></li><li class="nav-btn"><a href="browse.php?cat=28" title=>MUSIC</a></li><li class="nav-btn"><a href="subs.php" title=>SUBTITLES</a></li><li class="nav-btn"><a href="viewrequests.php" title=>REQUEST</a></li><li class="nav-btn"><a href="upload.php" title=>UPLOAD</a></li><li class="nav-btn"><a href="my.php" title=>PROFILE</a></li><li class="nav-btn"><a href="/community" title=>FORUM</a></li><li class="nav-btn"><a href="rules.php" title=>RULES</a></li><li class="nav-btn"><a href="donate.php" title=>DONATE</a></li><li class="nav-btn"><a href="staff.php" title=>STAFF</a></li><li class="nav-btn"><a href="faq.php" title=>FAQ</a></li></ul><ul style="float: right;"><li class="nav-btn"><a href="logout.php" title=>LOGOUT</a></li></ul></div>');
	$('map[name="m_footer"]').remove();
})();