Last active
April 30, 2016 13:41
-
-
Save Critter/30858ae75f8a302051766e7bac3e00eb to your computer and use it in GitHub Desktop.
UserScript to remove the Ad-Block Blocking from workupload.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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