Greasy Fork 支持简体中文。

Zoso BOR Remover

This script removes anti-abortion propaganda by the Romanian Orthodox Church (BOR) for a propaganda-free browsing

// ==UserScript==
// @name         Zoso BOR Remover
// @namespace    http://tampermonkey.net/
// @version      0.666
// @description  This script removes anti-abortion propaganda by the Romanian Orthodox Church (BOR) for a propaganda-free browsing
// @author       Bogdan Constantinescu <[email protected]>
// @match        https://zoso.ro/*
// @run-at       document-end
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zoso.ro
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  const thePosts = document.getElementsByClassName('listingpost');

  for(let i = 0; i < thePosts.length; i++) {
    const thePost = thePosts.item(i);
    const theAuthor = thePost?.querySelector("[itemprop=author]").getElementsByTagName('span')[0].innerHTML ?? undefined;
    if (theAuthor === 'Eftimie') {
      thePost?.remove();
    }
  }
})();