gulang453 发表于 2023-8-2 17:20

steam一键搜索离线账号

本帖最后由 gulang453 于 2023-12-11 19:31 编辑

```
// ==UserScript==
// @name         steam search
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description查找游戏离线账号
// @AuThor       You
// @match      *://store.steampowered.com/app/*
// @grant      GM_xmlhttpRequest
// ==/UserScript==

(function() {
      'use strict';

      var 父级 = document.getElementsByClassName("store_nav");
      var 副本 = document.createElement('div');
      副本.innerHTML = '<span>找号</span>';
      副本.setAttribute("class", "tab");
      父级.appendChild(副本);

      var AppName = document.getElementById('appHubAppName')
                .textContent;

      var Appid = /app\/(\d+)/.exec(window.location.href);

      副本.onclick = () => {
                console.log(AppName);
                console.log(Appid);
                console.log("http://146.56.112.227/bf/search.php?query=" + AppName);
                GM_xmlhttpRequest({
                        method: "GET",
                        url: "http://146.56.112.227/bf/search.php?query=" + encodeURIComponent(AppName),
                        headers: {
                              "User-Agent": "Mozilla/5.0",
                              "Accept": "application/json"
                        },
                        onload: function(response) {
                              var jsonData = JSON.parse(response.responseText);
                              if (Array.isArray(jsonData)) {
                                        var extractedData = jsonData.map(item => ({
                                                gameName: item.gameName,
                                                userName: item.userName,
                                                password: item.password,
                                                ssfn: item.ssfn
                                        }));
                                        console.log(extractedData);
                                        openNewPage(JSON.stringify(extractedData), Appid); // 传递Appid
                              } else {
                                        console.log(jsonData);
                                        openNewPage(JSON.stringify(jsonData), Appid); // 传递Appid
                              }
                        }
                });
      }

function openNewPage(data, Appid) { // 添加Appid参数
    var newWindow = window.open("", "_blank");
    newWindow.document.write("<html><head><title>Steam搜索结果</title>");
    newWindow.document.write("<style>");
    newWindow.document.write("body { font-family: Arial, sans-serif; background-image: url('background.jpg'); background-size: cover; }");
    newWindow.document.write("h1 { text-align: center; color: #fff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }");
    newWindow.document.write("table { width: 100%; border-collapse: collapse; }");
    newWindow.document.write("th, td { padding: 8px; text-align: left; border-bottom: 1px solid #ddd; color: #fff; background-color: rgba(0, 0, 0, 0.5); }");
    newWindow.document.write("tr:nth-child(even) { background-color: rgba(255, 255, 255, 0.1); }");
    newWindow.document.write("@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }");
    newWindow.document.write("tr { animation: fadeIn 0.5s ease-in-out; }");
    newWindow.document.write("</style>");
    newWindow.document.write("</head><body>");
    newWindow.document.write("<h1>Steam搜索结果</h1>");
    newWindow.document.write("<table>");
    newWindow.document.write("<tr><th>游戏名称</th><th>用户名</th><th>密码</th><th>SSFN</th><th>App ID</th></tr>");

    var extractedData = JSON.parse(data);
    extractedData = Object.values(extractedData);
    console.log(extractedData.length);
    for (var i = 0; i < extractedData.length; i++) {
      var item = extractedData;
      // 打印参数值
      newWindow.document.write("<tr>");
      newWindow.document.write("<td>" + item.gameName + "</td>");
      newWindow.document.write("<td>" + item.userName + "</td>");
      newWindow.document.write("<td>" + item.password + "</td>");
      newWindow.document.write("<td>" + item.ssfn + "</td>");
      newWindow.document.write("<td>" + Appid + "</td>");
      newWindow.document.write("</tr>");
    }

    newWindow.document.write("</table></body></html>");
    newWindow.document.close();
}

})();
```
# 运行环境:脚本猫
# 更新时间:2023/12/11

coob 发表于 2023-8-12 11:40

目前那个查询的网站报错了

gulang453 发表于 2023-8-3 01:47

z0369258 发表于 2023-8-2 21:04
怎么使用呢?

https://wwej.lanzouw.com/i2UJj148j6sh
将steamcmd放到steam根目录,然后打开steamTT,选择要玩的游戏点击登录,输入appid,入库就用steamtools

z0369258 发表于 2023-8-2 21:04

怎么使用呢?

BUCTPJP 发表于 2023-8-2 21:59

z0369258 发表于 2023-8-2 21:04
怎么使用呢?

可以用Watt Toolkit(原Steam++),功能很全,可以加速,挂脚本,保存,一键登录本机登录过的所有账号,还可以ASF挂卡。

YUESE666 发表于 2023-8-3 10:07

gulang453 发表于 2023-8-3 01:47
https://wwej.lanzouw.com/i2UJj148j6sh
将steamcmd放到steam根目录,然后打开steamTT,选择要玩的游戏 ...

你好,提示请输入要更新的应用程序的appid,我应该从哪里知道这个appid呢?

gulang453 发表于 2023-8-3 12:56

YUESE666 发表于 2023-8-3 10:07
你好,提示请输入要更新的应用程序的appid,我应该从哪里知道这个appid呢?

steam商店的url

pglterry 发表于 2023-8-3 17:39

感谢分享,使用楼主提供的工具下载了遗迹2,顺利玩上了

gulang453 发表于 2023-8-3 23:41

http://steam.rainyun.ink/search.html 查询页面
http://steam.rainyun.ink/ 添加账号页面

yu520 发表于 2023-8-7 08:42

这个怎么操作呀
页: [1] 2
查看完整版本: steam一键搜索离线账号