Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AM
a-ninny-moose @kbin.social
Posts 0
Comments 2
Share your CSS and JS snippets here
  • tampermonkey script to automatically hide voted (upvoted or downvoted) posts. Keep your feed always fresh.

    // ==UserScript==
    // @name hide voted posts
    // @namespace http://tampermonkey.net/
    // @version 0.1
    // @description try to take over the world!
    // @author You
    // @match https://kbin.social/
    // @match https://kbin.social/?p=*
    // @icon https://www.google.com/s2/favicons?sz=64&domain=kbin.social
    // @grant none
    // ==/UserScript==
    //(function() {

    //})();
    var $ = window.jQuery;

    window.setInterval(clearVoted, 1000);

    function clearVoted() {
    'use strict';
    var votedPosts = $('.vote__up.active') || $('.vote__down.active');
    votedPosts.each(function() {
    $(this).closest('.entry').css({'display':'none'});
    });
    }