Greasy Fork is available in English.
用于萌百编辑者自动填写验证码
当前为
// ==UserScript==
// @name 自动填写萌娘百科验证码
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 用于萌百编辑者自动填写验证码
// @author CirnoGiovanna
// @match https://zh.moegirl.org/*
// ==/UserScript==
(function() {
'use strict';
if(document.domain == 'zh.moegirl.org'){
var test = document.getElementById('wpCaptchaWord');
if(test){
var ref = document.getElementsByClassName('external free');
var url = ref.item(ref.length-1).href;
//console.log(url)
var name1 = url.replace(/.*\//,'');
var name2 = name1.replace(/.*:/,'');
test.value = decodeURI(name2);
}
}
})();