Last active
January 1, 2018 08:24
-
-
Save Isuru-Nanayakkara/200eeae55fee081a3c25088abae1b6f1 to your computer and use it in GitHub Desktop.
Hides comment sections on Sri Lankan gossip sites
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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