// ==UserScript==
// @name Custom Style Sheet OcUK
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Removal of specific Elements
// @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; }'); // Hide Facebook Square in Top Right of posts
addGlobalStyle('.sharePage { display: none !important; }'); // Hide entire "Share" element at base of page
addGlobalStyle('.onlineIndicator { display: none !important; }'); // Hide green triangular Online Indicators in avatar window
addGlobalStyle('.newIndicator { display: none !important; }'); // Hide NEW indicator in Top Right of posts
addGlobalStyle('.messageUserInfo { box-shadow: none !important; }'); // remove Shadow from Avatar section
addGlobalStyle('.messageUserInfo { border: none !important; }'); // remove Border from Avatar section
//addGlobalStyle('.node_1 { display: none !important; }'); //Hide an Entire Forum Sub Section on Index Page
// Node numbers MAY change and the below list is for guidance only
// node_122 Latest News
// node_72 Customer Service
// node_1 Hardware
// node_108 Apple
// node_71 Software
// node_27 Audio Visual
// node_22 Games
// node_11 Life
// node_38 Distributed Computing
// node_17 Members Market
// node_141 OcUK matters
// node_93 Archives