您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds Link in Steam Store Page to open page in the Steam Client, look for the green button to the right of the game title.
// ==UserScript== // @name Steam Store - Open App in Steam Client // @namespace url://none // @version 0.1 // @description Adds Link in Steam Store Page to open page in the Steam Client, look for the green button to the right of the game title. // @match http://store.steampowered.com/app/* // @copyright Oddity // ==/UserScript== var locEl = document.querySelector("div.apphub_OtherSiteInfo"), appid = document.location.pathname.match(/\d+/), storeurl = "steam://store/"+appid, linkel = document.createElement("a"); linkel.setAttribute('href',storeurl); linkel.className ="btnv6_green_white_innerfade btn_medium"; linkel.setAttribute('style',"font-size: 15px"); //linkel.text = ""; linkel.innerHTML ='<span><img src="http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png" width="44" height="11">⬈</span>'; locEl.appendChild(linkel);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址