自动安装插件2

在 greasyfork 自动安装插件

目前为 2024-04-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         自动安装插件2
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  在 greasyfork 自动安装插件
// @author       AbsMatt
// @match        https://gf.qytechs.cn/*
// @grant        none
// @license      MIT
// ==/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();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址