// ==UserScript== // @name Steam自动勾选同意用户协议 // @namespace http://tampermonkey.net/ // @version 0.2.3 // @description Steam自动勾选同意用户协议复选框 // @author shiquda // @include https://store.steampowered.com/* // @include https://steamcommunity.com/* // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; //读取网址 var $href = window.location.href if ($href.indexOf('checkout') != -1){ console.log('checkout') $('accept_ssa').defaultChecked = true } else if ($href.indexOf('inventory') != -1){ console.log('inventory') window.onload = function(){ var marketsell = document.getElementById('market_sell_dialog_accept_ssa') marketsell.checked = true } } })()