Created
December 24, 2016 09:42
-
-
Save prog110/fcccbace66d62162daf6497d95a5de8f to your computer and use it in GitHub Desktop.
Vladmihalcea Cleaner
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 Vladmihalcea Cleaner | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://vladmihalcea.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| document.getElementById("masthead").remove(); | |
| document.getElementById("secondary").remove(); | |
| document.getElementById("primary").style.width = '100%'; | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment