Greasy Fork is available in English.

盛趣登录页面自动勾选同意服务协议

none

// ==UserScript==
// @name         盛趣登录页面自动勾选同意服务协议
// @namespace    https://greasyfork.org/users/325815
// @version      1.0.0
// @description  none
// @author       monat151
// @license      MIT
// @match        https://login.u.sdo.com/sdo/Login/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sdo.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const $ = window.$

    $('#isAgreementAccept').prop('checked', true)
})();