on Is there a way to remove threads that you've already read? · c/jerboa · 1 pts · 3y@Violet not on kbin.social. I wrote a little tampermonkey script that will auto hide all the posts that I vote on.
on Share your CSS and JS snippets here · c/kbinStyles · 5 pts · 3ytampermonkey 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'}); }); }
@Violet not on kbin.social. I wrote a little tampermonkey script that will auto hide all the posts that I vote on.
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'});
});
}