// ==UserScript== // @name 在 Steam(客户端) 中打开 - Open in Steam // @namespace https://github.com/ewigl/open-in-steam // @version 0.2.8 // @description 在 Steam 网页中添加一个按钮, 以快速在 Steam(客户端) 中打开当前页面 // @author Licht // @license MIT // @homepage https://github.com/ewigl/open-in-steam // @match http*://*.steampowered.com/* // @match http*://*.steamcommunity.com/* // @icon https://store.steampowered.com/favicon.ico // @connect localhost // @connect * // @grant GM_addStyle // @downloadURL none // ==/UserScript== ;(function () { 'use strict' let styleCSS = ` #open-in-steam-button { position: fixed; bottom: 20px; right: 20px; z-index: 9999; width: 50px; height: 50px; border-radius: 50%; background-color: #181d25; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } #open-in-steam-button svg { fill: #4d7fbe; width: 50%; height: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } ` GM_addStyle(styleCSS) // Main const main = { init() { const openInSteamButton = ` ` document.getElementsByTagName('body')[0].innerHTML += openInSteamButton }, } main.init() })()