Remove social sharing icons

Remove soical sharing icons and must not be the same as name

As of 2017-12-29. See the latest version.

// ==UserScript==
// @name Remove social sharing icons
// @description:en Remove soical sharing icons and must not be the same as name
// @version 0.0.2 alpha
// @match *
// @exclude *facebook.com*
// @exclude *twitter.com*
// @exclude *instagram.com*
// @exclude *google*
// @exclude *mail*
// @exclude *office*
// @exclude *gov*
// @grant none
// @run-at       document-start
// @namespace https://greasyfork.org/users/12687
// @description Remove soical sharing icons and must not be the same as name
// ==/UserScript==
var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = "\
span[class*=social-icon],\
div[class*=sharing],\
div[class*=share],\
div[href*='com/+'],\
div[href*='fb.'],\
span[class*=sharing],\
span[class*=share],\
a[href*='com/+'],\
a[href*='fb.'],\
div[class*=follow],\
";
document.documentElement.appendChild(styleEl);

function openpage(){return;}