Close

[contest follower update] my current hackaday.io feed cleaner

davedarkodavedarko wrote 07/21/2015 at 13:16 • 1 min read • Like
// ==UserScript==
// @name       HaD beautifier
// @namespace  http://hackaday.io/hacker/3459
// @version    0.1
// @description  This changes the appearance of all pages 
// @match      *://hackaday.io
// @match      *://hackaday.io/*
// @copyright  2014+, DaveDarko
// ==/UserScript==

setTimeout(function(){ 
    $('[data-group="follow-contest-contest"]').hide(); 
    $('.contributorsAdded').hide();
}, 3000);

for tampermonkey..

I really don't like timeout functions, but since I don't know when the feeds are loaded and tampermonkey most probably only waits for document loaded, I had to do it this way.

Like

Discussions

ZaidPirwani wrote 08/27/2015 at 15:08 point

THANK YOU oh so very much... :)

  Are you sure? yes | no