Flynder: simplify

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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
  
})