Flynder: simplify

Simplify Flynder interface: unstick nav to save v-space, remove overlaping soc. buttons, etc

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        Flynder: simplify
// @namespace   http://vk.com/e_gold
// @description Simplify Flynder interface: unstick nav to save v-space, remove overlaping soc. buttons, etc
// @include     http://flynder.com/*
// @version     1
// @grant       none
// ==/UserScript==

$(document).ready(function(){
  var mycss = "<style>"+
      ".navigation {position:absolute; !important}"+
      "</style>";
  $("body").append(mycss);//do not waste my precious v-space with your f**king sticky navbar
  $("div.header-bg").remove();
  //if web developer cannot place it correctly, REMOVE! SocButtons are for idiots. 
  $("ul#sticky_home_sidebar").remove();
  $("div.offer__overlay").remove();//stupid onHover for idiots
  $("a.expired").remove();//who needs to see expired deals (except marketing)?
  $("div#user-quotes").remove();//I have my own opinion. (again marketing)
  $("div.special").remove();//Duplication
  //for particular pages
  $("div.rte > p:last").remove();//remove stupid newsletter face
  $("div.rte > p:last").remove();//remove stupid newsletter face
  $("div.rte > p:last").remove();//remove stupid newsletter face
  $("div.rte > table:last").remove();//remove ad-table
  $("div.rte > h2:last").remove();//remove stupid newsletter face
  
})