您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
画像認識を自動処理するものではありません。使用は自己責任で。
当前为
- // ==UserScript==
- // @name shink.inとかのreCAPTCHAを自動クリック
- // @namespace http://hogehoge/
- // @version 1.1
- // @description 画像認識を自動処理するものではありません。使用は自己責任で。
- // @author H. Amami
- // @match https://www.google.com/recaptcha/api2/*
- // @grant none
- // @run-at document-end
- // ==/UserScript==
- (function() {
- 'use strict';
- var check = function(ref){
- var domains = ["fas.li", "ouo.io", "ouo.press", "shink.in", "al.ly", "coinlink.co"];
- 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);
- }
- })();