Skip to content

Instantly share code, notes, and snippets.

@halfcoder
Created March 27, 2014 15:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save halfcoder/9810147 to your computer and use it in GitHub Desktop.
Save halfcoder/9810147 to your computer and use it in GitHub Desktop.
400gb.com Ads Remover
// ==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