Skip to content

Instantly share code, notes, and snippets.

@prog110
Created December 24, 2016 09:42
Show Gist options
  • Select an option

  • Save prog110/fcccbace66d62162daf6497d95a5de8f to your computer and use it in GitHub Desktop.

Select an option

Save prog110/fcccbace66d62162daf6497d95a5de8f to your computer and use it in GitHub Desktop.
Vladmihalcea Cleaner
// ==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