The Nude Improved

Declutters and hides ads, removes tracking from external links

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);
  });