tjb0607 / Fuck spam

// ==UserScript==
// @name         Fuck spam
// @namespace    http://tjb0607.me/
// @version      0.3.1
// @description  Removes spam from tumblr dashboard /tagged/ pages. Warning: this script constantly runs in the background every 0.5 seconds. Please uninstall this script the very moment it's not needed.
// @author       tjb0607
// @include      /^https?://(www\.)?tumblr\.com/(tagged|search)/.*$/
// @updateURL https://openuserjs.org/meta/tjb0607/Fuck_spam.meta.js
// ==/UserScript==

(function() {
    'use strict';
    function fuckspam() {
        jQuery('a.post_media_photo_anchor[href^="http://goo.gl"], a.post_media_photo_anchor[href^="http://islatities.club"], a.post_media_photo_anchor[href^="http://isotopeka.club"], a.post_media_photo_anchor[href^="http://gnatell.website"], a.post_media_photo_anchor[href^="http://gautell.website"], a.post_media_photo_anchor[href^="http://isocration.club"], a.post_media_photo_anchor[href^="http://islavic.club"], a.post_media_photo_anchor[href^="http://aostell.website"], a.post_media_photo_anchor[href^="http://bostell.website"]').each(function(e) { jQuery(this).parent().parent().parent().parent().parent().remove(); } );
        setTimeout(fuckspam, 500);
    }
    fuckspam();
})();