Skip to content

Instantly share code, notes, and snippets.

@peter-hank
Created January 10, 2018 08:26
Show Gist options
  • Save peter-hank/4049962c8ccd3abefa42e58bdd4a5266 to your computer and use it in GitHub Desktop.
Save peter-hank/4049962c8ccd3abefa42e58bdd4a5266 to your computer and use it in GitHub Desktop.
Reddit multi-upvote for Greasemonkey
// ==UserScript==
// @name Reddit multi-upvote
// @description Upvotes submissions and comments
// @include https://www.reddit.com/r/url1*
// @include https://www.reddit.com/r/url2*
// @version 1
// @grant none
// ==/UserScript==
// submissions only
// var divs = document.querySelectorAll('.thing .arrow.up.login-required');
var divs = document.querySelectorAll('.arrow.up.login-required');
[].forEach.call(divs, function(div) {
div.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment