AudioBookBay hide category: Political

Hide Political category

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

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

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 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();
});