// ==UserScript==
// @name Custom Style Sheet OcUK
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove Social Media Elements from OcUk Forums
// @author Sin_Chase
// @match https://forums.overclockers.co.uk/*
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.fa-facebook-square { display: none !important; }');
addGlobalStyle('.sharePage { display: none !important; }');