Skip to content

Instantly share code, notes, and snippets.

@n37r06u3
Forked from halfcoder/400gb.user.js
Last active August 29, 2015 14:14
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 n37r06u3/651727de73873d7ec369 to your computer and use it in GitHub Desktop.
Save n37r06u3/651727de73873d7ec369 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name 400gb.com Ads Remover
// @description Yes
// @version 0.1
// @author halfcoder
// @namespace http://github.com/halfcoder
// @include http://www.400gb.com/file/*
// ==/UserScript==
setTimeout(function() {
var script = document.createElement('script');
script.id = '400gbadsremover';
script.type = 'text/javascript';
script.innerHTML = "(function($){console.log(\"400gb.com Ads Remover by halfcoder is running!\");$(\"body\").append(\"<div id=\\\"cproIframe7holder\\\"></div>\");})(jQuery);";
document.head.appendChild(script);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment