Greasy Fork镜像 支持简体中文。

steam自动移除免费游戏/软件

steam自动移除免费的游戏/软件

  1. // ==UserScript==
  2. // @name steam自动移除免费游戏/软件
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description steam自动移除免费的游戏/软件
  6. // @author breeze
  7. // @match https://store.steampowered.com/account/licenses/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. if (document.querySelectorAll('.free_license_remove_link a').length > 1) {
  18. document.querySelectorAll('.free_license_remove_link a')[0].click()
  19. setTimeout(() => {
  20. document.querySelector('.btn_green_steamui').click()
  21. }, 0)
  22. }
  23.  
  24. })();

QingJ © 2025

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