// ==UserScript== // // @name Better XDA // @version 1.0 // @license LGPLv3 // @homepage localhost // @description Hide bullshit articles on xda-dev // @match https://www.xda-developers.com/* // @icon https://www.xda-developers.com/logo/2020/svg/xda-white-text.svg // @author Bahha // @namespace https://greasyfork.org/users/186498 // ==/UserScript== window.onload = function(){ var removedAuthors = ["Mahmoud Itani", "Timi Cantisano", "João Carrasqueira", "Rich Woods"]; //add your authors here var authors = document.getElementsByClassName("article-meta-data"); for(let i = 0; i < authors.length; i++){ if(removedAuthors.includes(authors[i].text)){ authors[i].closest(".col").remove(); } } }