Steam Store - Wishlist Exporter

Export your wishlist in a raw text list (applies chosen filters)

  1. // ==UserScript==
  2. // @name Steam Store - Wishlist Exporter
  3. // @icon http://store.steampowered.com/favicon.ico
  4. // @namespace Royalgamer06
  5. // @version 1.2
  6. // @description Export your wishlist in a raw text list (applies chosen filters)
  7. // @author Royalgamer06
  8. // @match *://store.steampowered.com/wishlist/*
  9. // @grant unsafeWindow
  10. // @run-at document-idle
  11. // ==/UserScript==
  12.  
  13. jQuery(".controls").prepend('<div class="settings_tab" title="Show raw wishlist titles"><a href="javascript:exportWishlist();"><img src="//steamcommunity-a.akamaihd.net/public/images/skin_1/notification_icon_guide.png"></a></div>');
  14.  
  15. unsafeWindow.exportWishlist = function() {
  16. var win = window.open("", "", "width=480,height=640");
  17. unsafeWindow.g_Wishlist.rgVisibleApps.forEach(appid => {
  18. win.document.write(unsafeWindow.g_rgAppInfo[appid].name + "<br>");
  19. });
  20. var range = win.document.createRange();
  21. range.selectNodeContents(win.document.body);
  22. var selection = win.window.getSelection();
  23. selection.removeAllRanges();
  24. selection.addRange(range);
  25. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址