Skip to content

Instantly share code, notes, and snippets.

@Isuru-Nanayakkara
Last active January 1, 2018 08:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Isuru-Nanayakkara/200eeae55fee081a3c25088abae1b6f1 to your computer and use it in GitHub Desktop.
Save Isuru-Nanayakkara/200eeae55fee081a3c25088abae1b6f1 to your computer and use it in GitHub Desktop.
Hides comment sections on Sri Lankan gossip sites
// ==UserScript==
// @name Arkangel
// @description Hides comment sections on Sri Lankan gossip sites
// @include http://www.gossiplankanews.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @version 1.0
// @license GPL v3 or any later version (http://www.gnu.org/copyleft/gpl.html)
// @grant GM_addStyle
// ==/UserScript==
function cheanup(jNode) {
$('#IDCommentsHead').hide();
$('#idc-cover').hide();
$('#IDCommentsNewThreadCover').hide();
}
waitForKeyElements('div#idc-container', cheanup);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment