Remove social sharing icons

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

As of 2018-11-02. See the latest version.

// ==UserScript==
// @name Remove social sharing icons
// @homepage		https://greasyfork.org/en/scripts/36844-remove-social-sharing-icons
// @supportURL		https://greasyfork.org/en/scripts/36844-remove-social-sharing-icons/feedback
// @description:en Remove soical sharing icons and must not be the same as name
// @version 0.1.5 beta
// @include *
// @exclude *facebook.com*
// @exclude *twitter.com*
// @exclude *instagram.com*
// @exclude *weibo*
// @exclude *google*
// @exclude *office*
// @noframes
// @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 = "\
div[class*=sharing],\
div[class^=share],\
div[id^=social],\
i[class*=social],\
img[src*='facebook.'],\
img[src*='fb-'],\
img[src*='FB-'],\
img[src*='tweet?'],\
img[class*=social],\
img[src*='witter'],\
span[class*=sharing],\
span[class*=social-icon],\
span[class*=twitter],\
a[href*='addthis'],\
a[href*='com/+'],\
a[href*='instagram.com/'],\
a[href*='javascript:share'],\
a[href*='share?'],\
a[href*='/share'],\
a[href*='tweet?'],\
a[title*='follow'],\
a[onclick*='sharer'],\
li[onclick*='share'],\
a[onclick*='tweet'],\
a[onclick*='social']{display: none !important;}\
";
document.documentElement.appendChild(styleEl);

function openpage(){return;}