Flynder: simplify

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

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

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