Skip to content

Instantly share code, notes, and snippets.

@kzelda
Last active June 23, 2016 10:19
Show Gist options
  • Save kzelda/f33a5b27e11da96e4e446e9489629701 to your computer and use it in GitHub Desktop.
Save kzelda/f33a5b27e11da96e4e446e9489629701 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://*.javacodegeeks.com/*
// @include https://*.webcodegeeks.com/*
// @include https://*.systemcodegeeks.com/*
// @include https://*.dotnetcodegeeks.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
if(document.querySelector(".content") !== null) document.querySelector(".content").style.width = "100%";
if(document.querySelector("#mc4wp-form-2") !== null) document.querySelector("#mc4wp-form-2").remove();
if(document.querySelector("#mc4wp-form-1") !== null) document.querySelector("#mc4wp-form-1").remove();
if(document.querySelector(".snp-overlay") !== null) document.querySelector(".snp-overlay").remove();
if(document.querySelector("#snp-bld-step-1") !== null) document.querySelector("#snp-bld-step-1").remove();
if(document.querySelector(".x-white.foobar-wrapper.shadow.fb-top") !== null) document.querySelector(".x-white.foobar-wrapper.shadow.fb-top").remove();
},500);
try{
document.querySelector(".sidebar").remove();
}catch(e){}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment