您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
oo
当前为
// ==UserScript== // @name Steamgifts, Simplify list style // @namespace http://tampermonkey.net/ // @version 0.1 // @description oo // @author You // @match https://www.steamgifts.com/* // @icon https://www.google.com/s2/favicons?domain=steamgifts.com // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; const style = document.createElement("style"); style.innerHTML =` .giveaway__row-outer-wrap { padding: 0; } .giveaway__row-outer-wrap + div:not(.giveaway__row-outer-wrap) { display: none !important; } .giveaway__row-inner-wrap { display: flex; } .giveaway__summary { display: flex; order: 2; margin-left: 16px; } .giveaway__heading, .giveaway__columns, .giveaway__links { display: inline-flex; order: 2; } .giveaway__columns { margin-left: auto; } .giveaway__columns > * { display: inline-block; } .giveaway__columns > * { border: 0; box-shadow: none; line-height: unset; border: none !important; box-shadow: none !important; background: none !important; } .giveaway__columns > *:nth-child(2) { display: none; } giveaway__links { height: unset; } .giveaway__links > *:last-child { display: none; } .giveaway_image_thumbnail, .giveaway_image_thumbnail_missing { height: 32px; width: 82px; order: 1; } `; document.body.appendChild(style); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址