Skip to content

Instantly share code, notes, and snippets.

@Critter
Last active April 30, 2016 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Critter/30858ae75f8a302051766e7bac3e00eb to your computer and use it in GitHub Desktop.
Save Critter/30858ae75f8a302051766e7bac3e00eb to your computer and use it in GitHub Desktop.
UserScript to remove the Ad-Block Blocking from workupload.com
// ==UserScript==
// @name Workupload Ad-Block Removal
// @namespace http://tampermonkey.net/
// @version 0.8
// @description Removes the sad crying girl that blocks workupload.com when ad-block is active
// @author Critter
// @match http://tampermonkey.net/index.php?version=4.0&ext=dhdg&updated=true
// @grant none
// @include http://workupload.com/*
// @include http://www.workupload.com/*
// @include https://workupload.com/*
// @include https://workupload.com/*
// ==/UserScript==
(function() {
'use strict';
if($('#download').is ('.donotshow'))
{
setTimeout(fixShit, 5000);
}
function fixShit()
{
$('#download').attr("id","downloadz");
$('#downloadz').removeClass('donotshow');
$('#sad').hide();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment