The Nude Improved

Declutters and hides ads, removes tracking from external links

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

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

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

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

이 스크립트를 설치하려면 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);
  });