Tampermonkey Code


// ==UserScript==
// @name         IWSMT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Maddie
// @match        https://iwastesomuchtime.com/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
    var j = jQuery.noConflict();
    j('.object_container').fadeOut(5000);
    j('.action-container').fadeOut(10000);
    j('.cross_promote').fadeOut(10000);
    j('.cross_object_tall').fadeOut(10000);
    j('.recent_comments_box').fadeOut(10000);
})();