[FrostTorrents.com] Better Header

Redoes the header on FT

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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();
})();