// ==UserScript== // @name Steam自动勾选同意用户协议 // @namespace http://tampermonkey.net/ // @version 0.2.4 // @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 var tab1 = document.querySelector(".cart_totals_area"), tab2 = document.querySelector("#checkout_content_review"), a = document.querySelector("#cart_area") a.insertBefore(tab2,a.firstChild) a.insertBefore(tab1,a.firstChild) } else if ($href.indexOf('inventory') != -1){ console.log('inventory') window.onload = function(){ var marketsell = document.getElementById('market_sell_dialog_accept_ssa') marketsell.checked = true } } })()