The Nude Improved

Declutters and hides ads, removes tracking from external links

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        The Nude Improved
// @namespace   https://gist.github.com/angrytoenail/bef6d23f43430f857e5c94cfc241954e
// @description Declutters and hides ads, removes tracking from external links
// @author      Angry Toenail
// @match       https://www.thenude.com/*
// @match       https://www.thenude.eu/*
// @match       http://staging.thenude.com/*
// @match       http://staging.thenude.eu/*
// @version     0.1
// @license     MIT
// @icon        https://www.google.com/s2/favicons?sz=64&domain=thenude.com
// @grant       GM.addStyle
// ==/UserScript==

// css selectors for elements to hide
const hideSelectors = [
  ".cams-footer-container ",
  ".metart-trial", // floating button
  "#home_page_top", // homepage banner
  "#home-page>h3.text-center", // amateur community link
  "#home-page>h2:has(+iframe)", // live girls chat now
  "#central-col>h1", // live chat in footer
  ":is(#home-page,#central-col)>iframe", // ad banner
  "#Carousel>p[style]", // live cam girls ad
  "#main-navbar>ul.nav>:not(li.dropdown)", // promotional links in navbar
  `body>div[style*="z-index"]`, // full-screen popups
  "#view-history", // floating button
  ":is(#recommendations, .row>div>.text-center)", // member recommended models
  ".row.essentials+.row", // add web link
  "hr+.row:has(.twitter-timeline)", // twitter feed
  ".sidebox-content:has(>a>img)", // featured models in sidebar
  // ".sidebox:is(.latest-updates,.top-ten,.top-ten-covers)", // latest updates
];

GM.addStyle(`
  ${hideSelectors.join(", ")} { display: none !important; }
  .sidebox-title {
    background-image: linear-gradient(to right, transparent, #99734d 25%, #99734d 75%, transparent);
    color: black !important;
    padding: 0.5rem 0;
  }
  .sidebox:is(.top-ten,.top-ten-covers) {
    margin-bottom:2rem;
    >a.pasttop { font-size: 0.8em; padding-top: 0.5em; }
  }
`);

// clean affiliate tracking codes from external links
window.document
  .querySelectorAll('a:is([data-link_class="model_pages"], [data-link_class="web_links"])')
  .forEach((a) => {
    const url = a.href
      .replace(/access\./i, "www.")
      .replace(/.*&html=(.*)$/i, "$1")
      .replace(/\/track\/[^\/]+/i, "")
      .replace(/imctrck.*bn=2528&url=(.*)$/i, "clubsweethearts.com$1")
      .replace(/(.*)(\?(ats|aff|nats|coupon|link_id)=.*)$/i, "$1")
      .replace(/.*u=(http.*)$/i, "$1");
    console.log(`✀ ${url}`);
    a.href = decodeURIComponent(url);
  });