您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
auto-click buttons for the gplinks link shortener
当前为
- // ==UserScript==
- // @name [not working] gplinks auto-skip
- // @description auto-click buttons for the gplinks link shortener
- // @version 1.1
- // @include *
- // @run-at document-start
- // @namespace https://gf.qytechs.cn/users/980489
- // ==/UserScript==
- (function() {
- 'use strict';
- document.addEventListener('DOMContentLoaded', function() {
- // part 1
- // can't specify a domain, they add new ones daily
- let button1 = document.querySelector('#VerifyBtn');
- let button2 = document.querySelector('#NextBtn');
- if (button1 && button2) {
- setTimeout(function() {button1.click()}, 3000);
- setTimeout(function() {button2.click()}, 5000);
- }
- // part 2
- const part2domainRegex = /gplinks.co\/[^/#]+\/(?:#|\?pid=)/
- if (part2domainRegex.test(window.location.href)) {
- let button3 = document.querySelector('a.get-link');
- setTimeout(function() {button3.click()}, 6000);
- }
- });
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址