Skip to content

Instantly share code, notes, and snippets.

Created September 1, 2017 05:25
Show Gist options
  • Save anonymous/43e341fd6332aafc152d76aa4e533d4c to your computer and use it in GitHub Desktop.
Save anonymous/43e341fd6332aafc152d76aa4e533d4c to your computer and use it in GitHub Desktop.
Enable downvoting r/AskTrumpSupporters (and show scores)
// ==UserScript==
// @name Enable_Downvote_ATS
// @include https://www.reddit.com/r/AskTrumpSupporters*
// @version 1
// @grant none
// ==/UserScript==
document.onready = function() {
var s = document.createElement('style');
s.setAttribute("type","text/css");
s.innerText = ".down {display:inherit !important;}";
s.innerText += ".score.unvoted{display:inherit !important;}"
document.body.append(s);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment