AudioBookBay hide category: Political

Hide Political category

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name AudioBookBay hide category: Political
// @description Hide Political category
// @author AudioBookBay_ScriptUpdater
// @version 0.3
// @license CC0
// @namespace https://greasyfork.org/en/users/1246393-audiobookbay-scriptupdater
// @require https://code.jquery.com/jquery-3.6.4.min.js
// @grant GM_addStyle
// @match https://audiobookbay.nl/*
// @match http://audiobookbay.nl/*
// @match https://audiobookbay.fi/*
// @match http://audiobookbay.fi/*
// @match https://audiobookbay.li/*
// @match http://audiobookbay.li/*
// @match https://audiobookbay.is/*
// @match http://audiobookbay.is/*
// @match https://theaudiobookbay.me/*
// @match http://theaudiobookbay.me/*
// @match https://audiobookbayabb.com/*
// @match http://audiobookbayabb.com/*
// @match https://audiobookbay.se/*
// @match http://audiobookbay.se/*
// @match https://audiobookbay.biz/*
// @match http://audiobookbay.biz/*
// @match https://audiobookbay.cc/*
// @match http://audiobookbay.cc/*
// @match https://audiobookbay.la/*
// @match http://audiobookbay.la/*
// @match https://audiobookbay.unblockit.lat/*
// @match http://audiobookbay.unblockit.lat/*
// @match https://audiobookbay.lu/*
// @match http://audiobookbay.lu/*
// ==/UserScript==

// Wait for the document to be ready
$(document).ready(function() {
    // Hide posts containing the word 'Political'
    $(".post").has(".postInfo:contains('Political')").hide();
});