literotica

literotica swf

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

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

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

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

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        literotica
// @namespace   http://domain.com/directory
// @description literotica swf
// @include     *.literotica.com*
// @version     1
// @locale      en-UK
// @grant       none
// ==/UserScript==

var temp=document.getElementsByTagName("img");
if (temp.length>0)
{
  temp[0].width=0;    
}

temp=document.getElementsByClassName("b-story-header");
if (temp.length>0)
{
   var t=temp[0].getElementsByTagName("h1");
  
   if (t.length>0)
     {
       t[0].style.fontSize="10px";
     }
}

temp=document.getElementsByClassName("b-story-user-y");
if (temp.length>0)
{
   var t=temp[0].getElementsByTagName("a");
  
   if (t.length>0)
     {
       t[0].style.fontSize="10px";
     }
}

temp=document.getElementById("logo-footer");
if (temp)
  {
    temp.style.visibility = "hidden";
  }

temp=document.getElementById("logo");
if (temp)
  {
    temp.style.visibility = "hidden";
  }

temp=document.getElementById("content");
if (temp)
  {
  temp=temp.getElementsByTagName("h2");
    
    if (temp.length>0)
      {
        
        for (i = 0; i < temp.length; i++) 
        {
           temp[i].style.fontSize="10px";
       }
        
         
      }
  }


temp=document.getElementsByClassName("contactheader");
if (temp.length>0)
{
  temp[0].style.visibility = "hidden"; 
}


temp=document.getElementsByClassName("b-story-user-y");
if (temp.length>1)
{
   var t=temp[1].getElementsByTagName("a");
  
   if (t.length>0)
     {
       t[0].style.fontSize="10px";
     }
}

temp=document.getElementsByClassName("t-storypage");
if (temp.length>0)
{
     temp[0].style.backgroundImage='none';
  
}

document.body.style.backgroundImage='none';