IPT BannerFix

IPT BannerFix - Fixes the ridiculously large IPT Banner Section to a reasonable size.

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

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 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        IPT BannerFix
// @description IPT BannerFix - Fixes the ridiculously large IPT Banner Section to a reasonable size.
// @include     *iptorrents.com/*
// @include     *ipt.lol/*
// @include     *ipt.cool/*
// @include     *ipt.world/*
// @include     *ip.findnemo.net/*
// @include     *ip.getcrazy.me/*
// @include     *ip.venom.global/*
// @include     *ip.workisboring.net/*
// @version     1.1
// @grant       none
// @namespace https://greasyfork.org/users/64132
// ==/UserScript==


//CLEANUP
//Slim Down the Banner
document.querySelector('.bannerPlaceholder').remove();
document.querySelector('#iptStart .banner').style = 'background-color: black; height: 95px';
// Fixing the new Mouseover hiding crap on the top rows  ---  not the best way of doing this but works for now
document.querySelector('.topRow').style = 'opacity: 1; height: 25px; top: 0px;';
document.querySelector('.stats').style = 'opacity: 1; height: 65px; top: 30px';
document.querySelector('.ql').style = 'opacity: 1; height: 55px';

//Remove Top Torrents Section
document.getElementById('toggleTopA').remove();

//Remove Bullshit (Donation) Announces over Categories
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > h1:nth-child(1)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > h1:nth-child(2)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > b:nth-child(1)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > b:nth-child(1)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > iframe:nth-child(4)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > b:nth-child(1)').remove();
document.querySelector('#body > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > b:nth-child(4)').remove();