Steam购买结账自动勾选同意用户协议

Steam购买结账自动勾选同意用户协议复选框

目前為 2022-11-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Steam购买结账自动勾选同意用户协议
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Steam购买结账自动勾选同意用户协议复选框
// @author       shiquda
// @include      https://store.steampowered.com/checkout/*
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';
    $('accept_ssa').defaultChecked = true
})()