// ==UserScript== // @name miniflux filter categories // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author https://gitea.zoemp.be/sansguidon // @match https://YOUR_MINIFLUX_DOMAIN/categories // @icon https://www.google.com/s2/favicons?sz=64&domain=miniflux.app // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('article.item').forEach(function(e) { var total = e.querySelector('span[class="category-item-total"]').innerText == '(0)'; if (total) { e.remove(); } }); })();