Last active
October 24, 2021 18:03
-
-
Save Luckz/79d35bfe77f42fd8689965adbd3c0bab to your computer and use it in GitHub Desktop.
SteamWishlistSortingHelper.user.js
This file contains 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 Wishlist Sorting Helper | |
// @namespace luckz | |
// @author luckz | |
// @version 1.0 | |
// @description Add easy renumbering to the 2018+ Steam wishlist page. Type a number and unfocus (or press enter) to submit a re-ordered wishlist. Shows rankings on others' WLs, but you obviously cannot modify them. | |
// @match https://store.steampowered.com/wishlist/* | |
// @grant GM_addStyle | |
// @updateURL https://gist.github.com/Luckz/79d35bfe77f42fd8689965adbd3c0bab/raw/SteamWishlistSortingHelper.user.js | |
// @downloadURL https://gist.github.com/Luckz/79d35bfe77f42fd8689965adbd3c0bab/raw/SteamWishlistSortingHelper.user.js | |
// @supportURL https://www.steamgifts.com/discussion/Pm5YQ/userscript-steam-wishlist-sorting-helper-edit-ranking-for-a-filtered-wishlist | |
// ==/UserScript== | |
// from https://www.reddit.com/r/Steam/comments/7xwd5e/quickfix_i_have_hundreds_of_games_in_my_wishlist/ | |
GM_addStyle( | |
`.hover_handle { | |
width: 40px !important; | |
border-right: 1px solid rgba(0, 0, 0, 0.2) !important; | |
display: block !important; | |
} | |
.capsule { | |
margin-left: 40px !important; | |
}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you this was exactly what i was looking for