Downvote /r/politics. This script is breaking the ToS of the site it runs on as can be seen here: https://reddit.zendesk.com/hc/en-us/articles/205192985 This is an exact copy of the downvote /r/the_donald script.
// ==UserScript==
// @name Reddit downvote /r/politics
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Downvote /r/politics. This script is breaking the ToS of the site it runs on as can be seen here: https://reddit.zendesk.com/hc/en-us/articles/205192985 This is an exact copy of the downvote /r/the_donald script.
// @author You
// @match https://www.reddit.com/r/politics*
// @grant none
// ==/UserScript==
(function() {
$(document).ready(function() {
setTimeout(function(){
$('.sitetable .arrow.down').click();
}, 500);
});
})();