您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script is not resolver, only can click.
当前为
- // ==UserScript==
- // @name Automatic Clicker for reCAPTCHA of URL Shortener
- // @namespace http://hogehoge/
- // @version 1.9
- // @description This script is not resolver, only can click.
- // @author H. Amami
- // @match *://www.google.com/recaptcha/api2/anchor?*
- // @grant none
- // @run-at document-end
- // ==/UserScript==
- (function() {
- 'use strict';
- var check = function(ref) {
- //You can add domain(s) if you want.
- var domains = ["fas.li", "ouo.io", "ouo.press", "shink.in", "al.ly", "coinlink.co", "uploadbank.com", "croco.site", "urlst.me", "cpmlink.net", "ally.sh", "elde.me"];
- for (var domain of domains) {
- if (~ref.indexOf(domain + "/")) return true;
- }
- return false;
- };
- if (check(document.referrer)) {
- var hoge = function() {
- document.getElementById("recaptcha-anchor").click();
- };
- setTimeout(hoge, 0);
- console.info("Automatic click of reCAPTCHA has been executed");
- }
- })();