您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clicks the "Trust and sign out" button automatically
// ==UserScript== // @name Apple Trust and sign out // @namespace http://tampermonkey.net/ // @version 2024-08-05 // @description Clicks the "Trust and sign out" button automatically // @author Marc PEREZ // @license MIT // @match https://idmsa.apple.com/appleauth/signout?* // @icon https://www.google.com/s2/favicons?sz=64&domain=apple.com // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js // @require https://update.greasyfork.org/scripts/383527/701631/Wait_for_key_elements.js // ==/UserScript== /* globals jQuery, $, waitForKeyElements */ function click(buttons) { buttons[0].click(); } // Find the "Trust and sign out" button and click it waitForKeyElements("div.button-bar-side:nth-child(1) > button:nth-child(1)", click);