Unfuck Pornhub 2

Hide videos on Pornhub by title with regex. Currently blocks incest titles.

スクリプトをインストールするには、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        Unfuck Pornhub 2
// @namespace   none yet
// @match       *://*.pornhub.com/*
// @grant       none
// @version     2.1
// @author      Kvothe (original code), fakeanatomydoctor (regex)
// @description Hide videos on Pornhub by title with regex. Currently blocks incest titles.
// ==/UserScript==


// WORD BLOCK LIST (supports regex, can make a copy and change these terms to whatever you like)
let wordList = ["sis", "step", "bro", "mom", "mother", 
  "dad", "father", "uncle", "n[ei]{2}ce", "nephew", "aunt",
  "daughter", "son", "family"];

// DON'T EDIT BELOW
console.log('WORKING');

const searchRelatedList = document.querySelectorAll('.searchRelatedList a')
searchRelatedList.forEach(term => {
    const searchTerm = term.textContent.toLocaleLowerCase().trim();
      wordList.forEach(word => {
      if(searchTerm.match(word) && word != "") {
        term.parentElement.remove()
        console.log(`search suggestion removed => ${searchTerm} cuz it contains ==> ${word}`)
      }
    })
})

const titles = document.querySelectorAll('.videoBox .title a')
titles.forEach(title => {
    const titleContent = title.textContent.toLocaleLowerCase().trim();
    wordList.forEach(word => {
      if(titleContent.match(word) && word != "") {
        title.parentElement.parentElement.parentElement.parentElement.remove();
        console.log(`video removed => ${titleContent} cuz it contains ==> ${word}`)
      }
    })
});