/* */

油猴脚本 steam一键搜索离线账号

分类:技术文章 时间:2024-03-13 17:05 浏览:0 评论:0
0

油猴脚本 steam一键搜索离线账号

运行环境:脚本猫
更新时间:2023/8/2

// ==UserScript==
// @name steam search
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 查找游戏离线账号
// @AuThor You
// @match *://store.steampowered.com/app/*
// @Icon https://www.google.com/s2/favicons?sz=64&domain=52pojie.cn
// @grant GM_xmlhttpRequest
// ==/UserScript==
(function() {
'use strict';
var 父级 = document.getElementsByClassName("store_nav")[0];
var 副本 = document.createElement('div');
副本[xss_clean] = '<span>找号</span>';
副本.setAttribute("class", "tab ");
父级.appendChild(副本);
var AppName = document.getElementById('appHubAppName')
.textContent;
var Appid = /app\/(\d+)/.exec(window.location.href)[1];
副本.onclick = () => {
console.log(AppName);
console.log(Appid);
console.log("https://ttgame.app/zh/home.php?page=1&limit=999&query=" + AppName);
GM_xmlhttpRequest({
method: "GET",
url: "https://ttgame.app/zh/home.php?page=1&limit=999&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.[xss_clean]("<html><head><title>Steam搜索结果</title>");
newWindow.[xss_clean]("<style>");
newWindow.[xss_clean]("body { font-family: Arial, sans-serif; background-image: url('background.jpg'); background-size: cover; }");
newWindow.[xss_clean]("h1 { text-align: center; color: #fff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }");
newWindow.[xss_clean]("table { width: 100%; border-collapse: collapse; }");
newWindow.[xss_clean]("th, td { padding: 8px; text-align: left; border-bottom: 1px solid #ddd; color: #fff; background-color: rgba(0, 0, 0, 0.5); }");
newWindow.[xss_clean]("tr:nth-child(even) { background-color: rgba(255, 255, 255, 0.1); }");
newWindow.[xss_clean]("@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }");
newWindow.[xss_clean]("tr { animation: fadeIn 0.5s ease-in-out; }");
newWindow.[xss_clean]("</style>");
newWindow.[xss_clean]("</head><body>");
newWindow.[xss_clean]("<h1>Steam搜索结果</h1>");
newWindow.[xss_clean]("<table>");
newWindow.[xss_clean]("<tr><th>游戏名称</th><th>用户名</th><th>密码</th><th>SSFN</th><th>App ID</th></tr>");
var extractedData = JSON.parse(data);
extractedData = Object.values(extractedData);
for (var i = 0; i < extractedData[3].length; i++) {
var item = extractedData[3][i];
// 打印参数值
newWindow.[xss_clean]("<tr>");
newWindow.[xss_clean]("<td>" + item.gameName + "</td>");
newWindow.[xss_clean]("<td>" + item.userName + "</td>");
newWindow.[xss_clean]("<td>" + item.password + "</td>");
newWindow.[xss_clean]("<td>" + item.ssfn + "</td>");
newWindow.[xss_clean]("<td>" + Appid + "</td>");
newWindow.[xss_clean]("</tr>");
}
newWindow.[xss_clean]("</table></body></html>");
newWindow.document.close();
}
})();
1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 技术文章 > 油猴脚本 steam一键搜索离线账号

用户评论