Last active
September 14, 2022 11:09
-
-
Save Asbra/3126c8737e22392722f5 to your computer and use it in GitHub Desktop.
Steam Community auto rate up
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 Steam Community auto rate up | |
// @version 1.0 | |
// @description Automatically upvote content on Steam Community Activity Feed | |
// @author Asbra | |
// @include http*://*steamcommunity.com/id/*/home* | |
// @homepage https://gist.github.com/Asbra/ | |
// @updateURL https://gist.github.com/Asbra/3126c8737e22392722f5/raw/Steam-Upvoter.user.js | |
// ==/UserScript== | |
voteUpAll = null; | |
(function($J){ | |
voteUpAll = function() { | |
$J(".btn_grey_grey").each(function(i,e){ | |
if (!$J(e).hasClass('active') && (e.id.startsWith("vote_up_") || e.id.startsWith("VoteUpBtn_"))) { | |
e.click(); | |
} | |
}); | |
}; | |
Blotter_InfiniteScrollingCheckForMoreContent_org = Blotter_InfiniteScrollingCheckForMoreContent; | |
Blotter_InfiniteScrollingCheckForMoreContent = function(url) { | |
Blotter_InfiniteScrollingCheckForMoreContent(url); | |
voteUpAll(); | |
}; | |
voteUpAll(); | |
}(jQuery)); |
Thanks for your feedback, made the change in the script now
im using similar code for filtering, but it looks like Blotter_InfiniteScrollingCheckForMoreContent is no longer defined? (latest firefox)
It doesn't work anymore. I'll be waiting for updates.
waiting for updates.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, I know you made this 2 years ago, but does it still work? It's not working for me