Flynder: simplify

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

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.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

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        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
  
})