// ==UserScript== // @name 自动安装插件2 // @namespace http://tampermonkey.net/ // @version 2024.2.26 // @description 在 greasyfork 自动安装插件 // @author AbsMatt // @match https://greasyfork.org/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== function syncSleep(time) { const start = new Date().getTime(); while (new Date().getTime() - start < time) {} } (function() { 'use strict'; syncSleep(3000); document.querySelector("#install-area > a.install-link").click(); syncSleep(1000); window.close(); })();