无名博客 https://wumingboke.xyz
油猴脚本
大部分typecho博客的评论框自动填写 名称&邮箱&网址
网址不需要可以不填
// ==UserScript==
// @name typecho评论自动填入
// @namespace https://wumingboke.xyz
// @version 1.0
// @description try to take over the world!
// @author 无名博客
// @match *://*/*
// @icon https://b12757766.beeoffer.cn/files/img/IMG_20220926_195041_034.jpg
// @grant none
// ==/UserScript==
(function() {
var ty_nick = "xxx博客" // 名称
var ty_mail = "[email protected]" // 邮箱
var ty_link = "https://example.com" //网站
//各种主题自动填入
if(document.querySelector("#author") !== null)
{
document.querySelector('#author').value = ty_nick
document.querySelector('#mail').value = ty_mail
document.querySelector('#url').value = ty_link
}
if(document.querySelector("#wl-nick") !== null)
{
document.querySelector('#wl-nick').value = ty_nick
document.querySelector('#wl-mail').value = ty_mail
document.querySelector('#wl-link').value = ty_link
}
if(document.querySelector("#comment-name") !== null)
{
document.querySelector('#comment-name').value = ty_nick
document.querySelector('#comment-mail').value = ty_mail
document.querySelector('#comment-url').value = ty_link
}
if(document.querySelector("#author1") !== null)
{
document.querySelector('#author1').value = ty_nick
document.querySelector('#mail1').value = ty_mail
document.querySelector('#url').value = ty_link
}
if(document.querySelector("#email") !== null)
{
document.querySelector('#author').value = ty_nick
document.querySelector('#email').value = ty_mail
document.querySelector('#url').value = ty_link
}
if(document.querySelector("#response-author") !== null)
{
document.querySelector('#response-author').value = ty_nick
document.querySelector('#response-email').value = ty_mail
document.querySelector('#response-website').value = ty_link
}
if(document.querySelector("#inpName") !== null)
{
document.querySelector('#inpName').value = ty_nick
document.querySelector('#inpEmail').value = ty_mail
document.querySelector('#inpHomePage').value = ty_link
}
})();
标签:nick,ty,value,v1.0,评论,querySelector,mail,填写,document
From: https://www.cnblogs.com/wmbkkk/p/16884291.html