Greasy Fork

来自缓存

Greasy Fork is available in English.

Steam游戏库保存器

保存Steam拥有的游戏,用于验证

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Steam游戏库保存器
// @namespace    https://qinlili.bid
// @version      0.1
// @description  保存Steam拥有的游戏,用于验证
// @author       琴梨梨
// @match        https://steamcommunity.com/id/*/games/*
// @icon         https://steamcommunity.com/favicon.ico
// @grant        none
// @require      https://lib.baomitu.com/pako/2.0.4/pako.min.js
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';
    function getVideoCardInfo() {
        const gl = document.createElement('canvas').getContext('webgl');
        if (!gl) {
            return false;
        }
        const debugInfo = gl.getExtension('WEBGL_debug_renderer_info');
        return debugInfo ? {
            vendor: gl.getParameter(debugInfo.UNMASKED_VENDOR_WEBGL),
            renderer: gl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL),
        } : false;
    }
    if(document.querySelector("#account_pulldown").innerText.trim()==document.querySelector("#responsive_page_template_content > div.pagecontent.no_header > div.profile_small_header_bg > div > div > span.profile_small_header_name > a").innerText.trim()){
        let dumpBtn=document.createElement("a");
        dumpBtn.innerText="保存游戏清单";
        document.querySelector("#gameslist_sort_options").insertAdjacentElement("afterbegin",dumpBtn);
        dumpBtn.addEventListener("click",async ()=>{
            let toSave={};
            toSave.username=document.querySelector("#account_pulldown").innerText.trim();
            toSave.userid=g_steamID;
            toSave.games=rgGames;
            toSave.GPUinfo = getVideoCardInfo();
            toSave.time=Date.now();
            let userAgent=await navigator.userAgentData.getHighEntropyValues(['architecture', 'bitness', 'mobile', 'platform', 'platformVersion', 'uaFullVersion', 'wow64'])
            delete userAgent.brands;
            toSave.browser=userAgent;
            let toSaveJson=JSON.stringify(toSave);
            console.log(toSave);
            let eleLink = document.createElement('a');
            eleLink.download = g_steamID+".svk";
            eleLink.style.display = 'none';
            eleLink.href = URL.createObjectURL(new Blob([pako.gzip(toSaveJson)]));
            document.body.appendChild(eleLink);
            eleLink.click();
            document.body.removeChild(eleLink);
        })
    }else{
        console.log("Not owner!")
    }
})();