Remove social sharing/following icons

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

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

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

//removes opening of share link (possible false postive)

function NoOpen(e){return 1}
this.open=NoOpen;
window.open=NoOpen;
open=NoOpen;

window.open = function(){
return;
}

//https://greasyfork.org/en/scripts/9578-remove-disqus-and-other-social-media-from-hindustan-times
setInterval(function(){ 
  $(".ggl_page_row").remove();
  $(".story_comment").remove();
  $(".follows").remove();
  $('a').filter(function(index) { return $(this).text() === "share"; }).closest("section").remove();
}, 1000);