您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
起点自动投推荐票
// ==UserScript== // @name 起点投推荐票 // @namespace http://tampermonkey.net/ // @version 0.13 // @description 起点自动投推荐票 // @author TZXinTai // @match https://book.qidian.com/info/1035849533/ // @icon https://qdfepccdn.qidian.com/my.qidian.com/static/qdp/img/[email protected] // @grant none // ==/UserScript== // 将@match网址最后的数字修改为你要投票的书籍ID就可 https://book.qidian.com/info/1035849533/ // 会把所有的推荐票都投给一本书 (function () { 'use strict'; setTimeout(() => { if (document.getElementById("nav-user-name").textContent != "") { document.getElementById('topVoteBtn').click(); // 投票互动 document.getElementById('recTab').click(); // 推荐票 setTimeout(() => { let tp = document.getElementById('voteRec'); // 投票 if (tp == null) { window.close(); } else { tp.click(); } window.close(); }, 3000); } else {alert("请登录(不可用)账号");} }, 10000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址