您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在大锦鲤的动态页:https://space.bilibili.com/226257459/dynamic,找到转发抽奖的专栏,按F8运行或使用左上角的弹出窗点运行 即可(用完记得关闭插件)【兼容 糯米是个背包 的专栏:https://space.bilibili.com/492426375/dynamic】
当前为
// ==UserScript== // @name b站大锦鲤 动态转发抽奖 脚本 // @namespace http://tampermonkey.net/ // @version 5.5 // @description 在大锦鲤的动态页:https://space.bilibili.com/226257459/dynamic,找到转发抽奖的专栏,按F8运行或使用左上角的弹出窗点运行 即可(用完记得关闭插件)【兼容 糯米是个背包 的专栏:https://space.bilibili.com/492426375/dynamic】 // @author Ikaros // @match https://www.bilibili.com/read/cv* // @match https://t.bilibili.com/* // @grant unsafeWindow // @grant GM_openInTab // @grant GM_getValue // @grant GM_setValue // @icon http://bilibili.com/favicon.ico // @namespace https://gf.qytechs.cn/scripts/456890 // @license MIT // ==/UserScript== ; (async function () { console.log("b站大锦鲤 动态转发抽奖 脚本 加载成功") // 通用的随机延时时间 let common_random_time = 500 // 调用接口的定时器 var interval1 = null // 弹窗div的定时器 var interval_alert_div = null // 所有操作成功标志位 var all_success = true // 生成弹窗div function init_alert_div() { var body = document.getElementsByTagName("body")[0]; var alert_div = document.createElement("div"); var alert_content_span = document.createElement("span"); alert_div.id = "alert_div"; alert_div.style.zIndex = "10000"; alert_div.style.top = "1%"; alert_div.style.left = "40%"; alert_div.style.width = "300px"; alert_div.style.height = "50px"; alert_div.style.padding = "5px"; alert_div.style.position = "fixed" alert_div.style.background = "#4a4a4aaa"; alert_div.style.display = "none"; alert_content_span.id = "alert_content_span"; alert_content_span.style.width = "280px"; alert_content_span.style.fontSize = "16px"; alert_content_span.style.color = "white"; alert_content_span.innerText = ""; alert_div.appendChild(alert_content_span); body.appendChild(alert_div); } // 显示弹出框 传入显示的内容content function show_alert(content) { var data_json = {} try { data_json = JSON.parse(GM_getValue("data_json")); } catch { data_json = { "alert_div_checkbox": true }; } // 获取启用状态 if(true != data_json["alert_div_checkbox"]) return; // 清除旧的定时 clearTimeout(interval_alert_div); var alert_div = document.getElementById("alert_div"); var alert_content_span = document.getElementById("alert_content_span"); alert_content_span.innerText = content; alert_div.style.display = "block"; // 5s后自动隐藏弹窗div interval_alert_div = setTimeout(() => { alert_div.style.display = "none"; }, 5000); } // 生成弹窗div init_alert_div() // 获取时间戳(毫秒级)并转换为 _秒级_毫秒 + 一个莫名其妙的数字 待解密 function get_now_date() { var date = Date.now() return "_" + date.toString().slice(0, 10) + "_" + date.toString().slice(-3) + random_num(9).toString() } // 是否在专栏页面 if(window.location.href.startsWith("https://www.bilibili.com/read/cv")) { // 如果中途中断了,可以自定义开始的下标 let start_num = 1 // 自定义结束的下标 let end_num = 999 // 打开页面的延时 120s let open_time = 120 // 循环调接口的延时 默认30分钟一轮巡 let interval_time = 30 // a标签数组 let a_arr = [] // 在页面左侧插入一个配置使用框 function init_config_div() { var body = document.getElementsByTagName("body")[0]; var br1 = document.createElement("br"); var br2 = document.createElement("br"); var br3 = document.createElement("br"); var br4 = document.createElement("br"); var br5 = document.createElement("br"); var br6 = document.createElement("br"); var br7 = document.createElement("br"); var br8 = document.createElement("br"); var br9 = document.createElement("br"); var br10 = document.createElement("br"); var div = document.createElement("div"); var show_hide_div = document.createElement("div"); var search_div = document.createElement("div"); var link_num_span = document.createElement("span"); var start_num_span = document.createElement("span"); var start_num_input = document.createElement("input"); var end_num_span = document.createElement("span"); var end_num_input = document.createElement("input"); var open_time_span = document.createElement("span"); var open_time_input = document.createElement("input"); var comment_span = document.createElement("span"); var comment_input = document.createElement("input"); var forward_comment_span = document.createElement("span"); var forward_comment_input = document.createElement("input"); var append_time_span = document.createElement("span"); var append_time_input = document.createElement("input"); var operation_interval_span = document.createElement("span"); var operation_interval_input = document.createElement("input"); var interval_span = document.createElement("span"); var interval_input = document.createElement("input"); var start_run = document.createElement("button"); var start_run2 = document.createElement("button"); var set_btn = document.createElement("button"); var color_btn = document.createElement("button"); var alert_div_checkbox = document.createElement("input"); var alert_div_label = document.createElement("label"); var use_api_checkbox = document.createElement("input"); var use_api_label = document.createElement("label"); var order_checkbox = document.createElement("input"); var order_label = document.createElement("label"); var unfollow_checkbox = document.createElement("input"); var unfollow_label = document.createElement("label"); div.style.position = "fixed"; div.style.top = "10%"; div.style.width = "300px"; div.style.left = "10px"; div.style.zIndex = "6666"; div.style.background = "#4a4a4a70"; show_hide_div.style.width = "120px"; show_hide_div.style.fontSize = "18px"; show_hide_div.style.background = "#ef8400"; show_hide_div.style.textAlign = "center"; show_hide_div.style.padding = "5px"; show_hide_div.style.cursor = "pointer"; show_hide_div.innerText = "页面检索☚"; show_hide_div.onclick = function(){ show_hide(); }; search_div.setAttribute("id", "search_div"); search_div.style.display = "none"; search_div.style.color = "#000000"; search_div.style.marginLeft = "5px"; var a_num = 0; var p_arr = document.getElementById("article-content").getElementsByTagName("p") console.log(p_arr); // 先统计个链接总数 for(let i = start_num; i < p_arr.length; i++) { if(p_arr[i].getElementsByTagName("a")[0]) { a_num++; // console.log(p_arr[i].getElementsByTagName("a")[0].innerText) a_arr.push(p_arr[i].getElementsByTagName("a")[0]) } } link_num_span.innerText = "检索到的动态总量:" + a_num; link_num_span.id = "link_num"; link_num_span.style.fontWeight = "900"; start_num_span.innerText = "打开页面起始索引"; start_num_span.title = "页面起始索引从0开始,就是从0开始的所有页面的遍历开始的起始下标,0表示第一个页面"; start_num_input.setAttribute("id", "start_num"); start_num_input.value = 1; start_num_input.style.margin = "10px"; start_num_input.style.width = "175px"; start_num_input.setAttribute("placeholder", "输入页面索引下标,默认1"); end_num_span.innerText = "打开页面结尾索引"; end_num_span.title = "页面结尾索引默认999,就是从开始到999所有页面,999表示第1000个页面"; end_num_input.setAttribute("id", "end_num"); end_num_input.value = 999; end_num_input.style.margin = "10px"; end_num_input.style.width = "175px"; end_num_input.setAttribute("placeholder", "输入页面索引下标,默认999"); open_time_span.innerText = "打开页面间隔(秒)"; open_time_span.title = "打开前一个动态页面和现在这个页面直接间隔的时间,就是如果间隔是1小时,打开第一个页面是1点,那么2点会打开第二个页面"; open_time_input.setAttribute("id", "open_time"); open_time_input.value = 120; open_time_input.style.margin = "10px"; open_time_input.style.width = "180px"; open_time_input.setAttribute("placeholder", "输入打开页面间隔,默认120秒"); comment_span.innerText = "动态评论内容"; comment_span.title = "动态 评论区发表的评论的内容"; comment_input.setAttribute("id", "comment"); comment_input.value = ""; comment_input.style.margin = "10px"; comment_input.style.width = "200px"; comment_input.setAttribute("placeholder", "不配置默认不给动态评论"); forward_comment_span.innerText = "转发评论内容"; forward_comment_span.title = "动态 转发区发表的评论的内容"; forward_comment_input.setAttribute("id", "forward_comment"); forward_comment_input.value = ""; forward_comment_input.style.margin = "10px"; forward_comment_input.style.width = "200px"; forward_comment_input.setAttribute("placeholder", "不配置默认直接转发,不在转发时追加评论"); operation_interval_span.innerText = "操作延时间隔(毫秒)"; operation_interval_span.title = "点赞/评论/转发等操作之间间隔的延时时间,主要在用户网络卡顿导致页面加载慢的情况下使用,默认3000毫秒,不建议设太小,不然很容易操作失败"; operation_interval_input.setAttribute("id", "operation_interval"); operation_interval_input.value = 3000; operation_interval_input.style.margin = "10px"; operation_interval_input.style.width = "165px"; operation_interval_input.setAttribute("placeholder", "默认追加延时是0毫秒"); append_time_span.innerText = "追加延时时间(毫秒)"; append_time_span.title = "点赞/评论/转发等操作的追加的延时时间,主要在用户网络卡顿导致页面加载慢的情况下使用"; append_time_input.setAttribute("id", "common_append_time"); append_time_input.value = 0; append_time_input.style.margin = "10px"; append_time_input.style.width = "165px"; append_time_input.setAttribute("placeholder", "默认追加延时是0毫秒"); interval_span.innerText = "调用接口的循环周期(秒)"; interval_span.title = "每隔这个周期,会请求接口然后去进行转发操作"; interval_span.style.display = "none" interval_input.setAttribute("id", "interval"); interval_input.value = 30; interval_input.style.margin = "10px"; interval_input.style.width = "145px"; interval_input.style.display = "none" interval_input.setAttribute("placeholder", "默认每30分钟运行一次"); alert_div_checkbox.id = "alert_div_checkbox"; alert_div_checkbox.type = "checkbox"; alert_div_label.innerText = "启用提示框"; alert_div_label.title = "用于开关提示框,提示框主要用于确认程序运行情况"; alert_div_label.setAttribute("for", "alert_div_checkbox"); use_api_checkbox.id = "use_api_checkbox"; use_api_checkbox.type = "checkbox"; use_api_label.innerText = "调API模式"; use_api_label.title = "用于切换工作模式,不开启默认为模拟手动模式,开启后直接调用API完成评论等操作"; use_api_label.setAttribute("for", "use_api_checkbox"); order_checkbox.id = "order_checkbox"; order_checkbox.type = "checkbox"; order_label.innerText = "预约抽奖"; order_label.title = "用于开关预约抽奖,默认不启用预约抽奖,容易黑预约"; order_label.setAttribute("for", "order_checkbox"); unfollow_checkbox.id = "unfollow_checkbox"; unfollow_checkbox.type = "checkbox"; unfollow_label.innerText = "取关模式"; unfollow_label.title = "取消关注,默认不启用,主要用于开奖后取关"; unfollow_label.setAttribute("for", "unfollow_checkbox"); start_run.innerText = "开始运行"; start_run.title = "保存配置,并开始自动检索页面并进行自动转发"; start_run.style.background = "#61d0ff"; start_run.style.border = "1px solid"; start_run.style.borderRadius = "3px"; start_run.style.fontSize = "18px"; start_run.style.width = "100px"; start_run.style.margin = "5px 10px"; start_run.style.cursor = "pointer"; start_run.onclick = function(){ go(); }; start_run2.innerText = "调话题接口"; start_run2.title = "保存配置,并开始循环调接口查找新话题动态页面并进行自动转发"; start_run2.style.background = "#61d0ff"; start_run2.style.border = "1px solid"; start_run2.style.borderRadius = "3px"; start_run2.style.fontSize = "18px"; start_run2.style.width = "100px"; start_run2.style.margin = "5px 10px"; start_run2.style.cursor = "pointer"; start_run2.onclick = function(){ go2(); }; set_btn.innerText = "仅保存配置"; set_btn.title = "仅保存上面的配置项,你就可以手动打开动态页面进行测试操作"; set_btn.style.background = "#61d0ff"; set_btn.style.border = "1px solid"; set_btn.style.borderRadius = "3px"; set_btn.style.fontSize = "18px"; set_btn.style.width = "100px"; set_btn.style.margin = "5px 10px"; set_btn.style.cursor = "pointer"; set_btn.onclick = function(){ set_config(); }; color_btn.innerText = "给选中的链接标记颜色"; color_btn.title = "点击后会给前面起始和结尾索引范围内的链接标上红色背景,方便用户确认范围"; color_btn.style.background = "#61d0ff"; color_btn.style.border = "1px solid"; color_btn.style.borderRadius = "3px"; color_btn.style.fontSize = "18px"; color_btn.style.width = "200px"; color_btn.style.margin = "5px 10px"; color_btn.style.cursor = "pointer"; color_btn.onclick = function(){ set_color(); }; // 加载旧配置的数据 var data_json = {} try { data_json = JSON.parse(GM_getValue("data_json")); } catch { data_json = {} } // 初始化复选框选中状态 if(data_json.hasOwnProperty("alert_div_checkbox")) { alert_div_checkbox.checked = data_json["alert_div_checkbox"] } else { alert_div_checkbox.checked = true data_json["alert_div_checkbox"] = true } if(data_json.hasOwnProperty("use_api_checkbox")) { use_api_checkbox.checked = data_json["use_api_checkbox"] } else { use_api_checkbox.checked = false data_json["use_api_checkbox"] = false } if(data_json.hasOwnProperty("order_checkbox")) { order_checkbox.checked = data_json["order_checkbox"] } else { order_checkbox.checked = false data_json["order_checkbox"] = false } if(data_json.hasOwnProperty("unfollow_checkbox")) { unfollow_checkbox.checked = data_json["unfollow_checkbox"] } else { unfollow_checkbox.checked = false data_json["unfollow_checkbox"] = false } if(data_json.hasOwnProperty("start_num")) { start_num_input.value = data_json["start_num"] } else { start_num_input.value = 1 data_json["start_num"] = 1 } if(data_json.hasOwnProperty("end_num")) { end_num_input.value = data_json["end_num"] } else { end_num_input.value = 999 data_json["end_num"] = 999 } if(data_json.hasOwnProperty("open_time")) { open_time_input.value = data_json["open_time"] } else { open_time_input.value = 120 data_json["open_time"] = 120 } if(data_json.hasOwnProperty("comment_content")) { comment_input.value = data_json["comment_content"] } else { comment_input.value = "" data_json["comment_content"] = "" } if(data_json.hasOwnProperty("forward_comment_content")) { forward_comment_input.value = data_json["forward_comment_content"] } else { forward_comment_input.value = "" data_json["forward_comment_content"] = "" } if(data_json.hasOwnProperty("common_append_time")) { append_time_input.value = data_json["common_append_time"] } else { append_time_input.value = 0 data_json["common_append_time"] = 0 } if(data_json.hasOwnProperty("operation_interval")) { operation_interval_input.value = data_json["operation_interval"] } else { operation_interval_input.value = 3000 data_json["operation_interval"] = 3000 } if(data_json.hasOwnProperty("operation_interval")) { interval_input.value = data_json["interval_time"] } else { interval_input.value = 30 data_json["interval_time"] = 30 } GM_setValue("data_json", JSON.stringify(data_json)) div.appendChild(show_hide_div); div.appendChild(search_div); search_div.appendChild(link_num_span); search_div.appendChild(br10); search_div.appendChild(start_num_span); search_div.appendChild(start_num_input); search_div.appendChild(br1); search_div.appendChild(end_num_span); search_div.appendChild(end_num_input); search_div.appendChild(br9); search_div.appendChild(open_time_span); search_div.appendChild(open_time_input); search_div.appendChild(br2); search_div.appendChild(comment_span); search_div.appendChild(comment_input); search_div.appendChild(br3); search_div.appendChild(forward_comment_span); search_div.appendChild(forward_comment_input); search_div.appendChild(br4); search_div.appendChild(interval_span); search_div.appendChild(interval_input); search_div.appendChild(operation_interval_span); search_div.appendChild(operation_interval_input); search_div.appendChild(br8); search_div.appendChild(append_time_span); search_div.appendChild(append_time_input); search_div.appendChild(br5); search_div.appendChild(alert_div_checkbox); search_div.appendChild(alert_div_label); search_div.appendChild(use_api_checkbox); search_div.appendChild(use_api_label); search_div.appendChild(order_checkbox); search_div.appendChild(order_label); search_div.appendChild(unfollow_checkbox); search_div.appendChild(unfollow_label); search_div.appendChild(br6); search_div.appendChild(start_run); // search_div.appendChild(start_run2); search_div.appendChild(set_btn); search_div.appendChild(br7); search_div.appendChild(color_btn); body.appendChild(div); } // 在页面左侧插入一个配置使用框 init_config_div() // 显示隐藏配置使用框 function show_hide() { var search_div = document.getElementById("search_div"); if(search_div.style.display == "none") search_div.style.display = "block"; else search_div.style.display = "none"; } // 仅保存配置 用于手动测试 function set_config() { var comment_content = document.getElementById("comment").value var forward_comment_content = document.getElementById("forward_comment").value var common_append_time = parseInt(document.getElementById("common_append_time").value) var operation_interval = parseInt(document.getElementById("operation_interval").value) start_num = parseInt(document.getElementById("start_num").value) end_num = parseInt(document.getElementById("end_num").value) open_time = parseInt(document.getElementById("open_time").value) interval_time = parseInt(document.getElementById("interval").value) var data_json = { "comment_content": comment_content, "forward_comment_content": forward_comment_content, "operation_interval": operation_interval, "common_append_time": common_append_time, "start_num": start_num, "end_num": end_num, "open_time": open_time, "interval_time": interval_time, "alert_div_checkbox": document.getElementById("alert_div_checkbox").checked, "use_api_checkbox": document.getElementById("use_api_checkbox").checked, "order_checkbox": document.getElementById("order_checkbox").checked, "unfollow_checkbox": document.getElementById("unfollow_checkbox").checked, } GM_setValue("data_json", JSON.stringify(data_json)) console.log(data_json) set_color() show_alert("配置保存成功喵~") } // 给索引范围内的链接上色 function set_color() { start_num = parseInt(document.getElementById("start_num").value) end_num = parseInt(document.getElementById("end_num").value) for(var i = 0; i < a_arr.length; i++) { // 索引范围外的 设为白色背景 if(i < start_num || i > end_num) { a_arr[i].style.background = "white" } else { // 范围内的设为黄色背景 a_arr[i].style.background = "yellow" } } } // 调用话题接口(转发动态 话题) 并 打开页面 function get_dynamic_and_open(topic_id) { // 构建url var url = "https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_new?topic_id=" + topic_id // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('GET', url, true); // 发送请求 将请求参数写在URL中 httpRequest.send(); httpRequest.onerror = function(error) { console.log("请求话题接口出错!" + error); show_alert("请求话题接口出错!" + error); }; httpRequest.ontimeout = function() { console.log("请求话题接口超时!"); show_alert("请求话题接口超时!"); }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { data_len = json["data"]["cards"].length // 遍历数据 for(let i = 0; i < data_len; i++) { setTimeout(function(){ var url = "https://t.bilibili.com/" + json["data"]["cards"][i]["desc"]["dynamic_id_str"] console.log("i:" + i + " 跳转:" + url) // window.open(url) // active:true,新标签页获取页面焦点 // setParent :true:新标签页面关闭后,焦点重新回到源页面 GM_openInTab(url, { active: false, setParent :true}); }, open_time * 1000 * i) } } else { console.log("话题接口返回数据有误") show_alert("话题接口返回数据有误") } } catch { console.log("话题接口返回数据有误") show_alert("话题接口返回数据有误") } } }; } // 准备打开页面 function go() { // 设置配置项 set_config() console.log("start_num=" + start_num + " end_num=" + end_num) var a_num = 0; var p_arr = document.getElementById("article-content").getElementsByTagName("p") console.log(p_arr); // 先统计个链接总数 for(let i = start_num; i < p_arr.length; i++) { if(p_arr[i].getElementsByTagName("a")[0]) { a_num++; // console.log(p_arr[i].getElementsByTagName("a")[0].innerText) } } // 遍历 for(let i = start_num; i < a_arr.length; i++) { // 到达结束下标+1时,截断 if(i > end_num) break; setTimeout(function() { console.log("i:" + i + " 跳转:" + a_arr[i].href) show_alert("i:" + i + " 跳转:" + a_arr[i].href) // window.open(a_arr[i].getAttribute("href")) // active:true,新标签页获取页面焦点 // setParent :true:新标签页面关闭后,焦点重新回到源页面 GM_openInTab(a_arr[i].href, { active: false, setParent :true}); }, open_time * 1000 * (i - start_num)) } } // 调接口获取动态 function go2() { // 设置配置项 set_config() // 先运行一次 get_dynamic_and_open("434405") // 默认每30分钟执行一次 interval1 = setInterval(function(){get_dynamic_and_open("434405")}, interval_time * 60 * 1000) } var key_flag = 0 // 传递传递参数event function keydown(event) { console.log(event.keyCode) // “119”为按键F8 if (event.keyCode == 119) { if(key_flag == 0) { console.log("检测到F8按下 开始自动转发抽奖~") show_alert("检测到F8按下 开始自动转发抽奖~") // 按下后执行的代码 go(); } key_flag = 1; for(var i=0; i<100000; i++); } } document.addEventListener("keydown", keydown); console.log("按F8 开始自动转发抽奖喵~") show_alert("按F8 开始自动转发抽奖喵~") } // 动态页面 if(window.location.href.startsWith("https://t.bilibili.com/")) { var data_json = JSON.parse(GM_getValue("data_json")); // 通用追加延时 var common_append_time = data_json["common_append_time"] var operation_interval = data_json["operation_interval"] var page_id = window.location.href.split('t.bilibili.com/')[1].split('?')[0] console.log("page_id=" + page_id) show_alert("page_id=" + page_id) // 获取cookie function getCookie(cookie_name) { var allcookies = document.cookie; //索引长度,开始索引的位置 var cookie_pos = allcookies.indexOf(cookie_name); // 如果找到了索引,就代表cookie存在,否则不存在 if (cookie_pos != -1) { // 把cookie_pos放在值的开始,只要给值加1即可 //计算取cookie值得开始索引,加的1为“=” cookie_pos = cookie_pos + cookie_name.length + 1; //计算取cookie值得结束索引 var cookie_end = allcookies.indexOf(";", cookie_pos); if (cookie_end == -1) { cookie_end = allcookies.length; } //得到想要的cookie的值 var value = unescape(allcookies.substring(cookie_pos, cookie_end)); } return value; } // 关注用户 function follow(uid) { // 构建url var url = "https://api.bilibili.com/x/relation/modify?act=1&fid=" + uid + "&spmid=444.42&re_src=0&csrf=" + getCookie("bili_jct") // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.withCredentials = true // 发送请求 将请求参数写在URL中 httpRequest.send(); httpRequest.onerror = function(error) { console.log("请求关注接口出错!" + error); show_alert("请求关注接口出错!" + error); all_success = false; }; httpRequest.ontimeout = function() { console.log("请求关注接口超时!"); show_alert("请求关注接口超时!"); all_success = false; }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("关注 " + uid + " 成功") show_alert("关注 " + uid + " 成功") } else { console.log("关注 " + uid + " 失败") show_alert("关注 " + uid + " 失败") all_success = false; return } } catch { console.log("关注 " + uid + " 失败") show_alert("关注 " + uid + " 失败") all_success = false; return } } }; } // 取关用户 function unfollow(uid) { // 构建url var url = "https://api.bilibili.com/x/relation/modify?act=2&fid=" + uid + "&spmid=444.42&re_src=0&csrf=" + getCookie("bili_jct") // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.withCredentials = true // 发送请求 将请求参数写在URL中 httpRequest.send(); httpRequest.onerror = function(error) { console.log("请求取关接口出错!" + error); show_alert("请求取关接口出错!" + error); all_success = false; // 关闭页面 setTimeout(function(){window.close();}, common_append_time + random_num(common_random_time)) }; httpRequest.ontimeout = function() { console.log("请求取关接口超时!"); show_alert("请求取关接口超时!"); all_success = false; // 关闭页面 setTimeout(function(){window.close();}, common_append_time + random_num(common_random_time)) }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("取关 " + uid + " 成功") show_alert("取关 " + uid + " 成功") } else { console.log("取关 " + uid + " 失败") show_alert("取关 " + uid + " 失败") all_success = false; } // 关闭页面 setTimeout(function(){window.close();}, common_append_time + random_num(common_random_time)) } catch { console.log("取关 " + uid + " 失败") show_alert("取关 " + uid + " 失败") all_success = false; // 关闭页面 setTimeout(function(){window.close();}, common_append_time + random_num(common_random_time)) } } }; } // 构建url var url = "https://api.bilibili.com/x/polymer/web-dynamic/v1/detail?timezone_offset=-480&id=" + page_id // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('GET', url, true); httpRequest.withCredentials = true // 发送请求 将请求参数写在URL中 httpRequest.send(); httpRequest.onerror = function(error) { console.log("请求页面详情接口出错!" + error); show_alert("请求页面详情接口出错!" + error); all_success = false; return }; httpRequest.ontimeout = function() { console.log("请求页面详情超时!"); show_alert("请求页面详情超时!"); all_success = false; return }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("获取详情 " + page_id + " 成功") show_alert("获取详情 " + page_id + " 成功") var mid = json["data"]["item"]["modules"]["module_author"]["mid"] console.log("mid=" + mid) show_alert("mid=" + mid) // 判断是否为取关模式 if(data_json["unfollow_checkbox"] == true) unfollow(mid) else follow(mid) } else { console.log("获取详情 " + page_id + " 失败") show_alert("获取详情 " + page_id + " 失败") all_success = false; return } } catch { console.log("获取详情 " + page_id + " 失败") show_alert("获取详情 " + page_id + " 失败") all_success = false; return } } } // 发送评论,传入页面id或oid 和 类型(17或11) 和 评论内容 function send_comment(oid, type, comment_content) { // 构建url var url = "https://api.bilibili.com/x/v2/reply/add?oid=" + oid + "&type=" + type + "&message=" + comment_content + "&plat=1&ordering=heat&jsonp=jsonp&csrf=" + getCookie("bili_jct") // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.withCredentials = true // 发送请求 将请求参数写在URL中 httpRequest.send(); httpRequest.onerror = function(error) { console.log("请求发送评论接口出错!type=" + type.toString() + error); show_alert("请求发送评论接口出错!type=" + type.toString() + error); all_success = false; }; httpRequest.ontimeout = function() { console.log("请求发送评论接口超时!type=" + type.toString()); show_alert("请求发送评论接口超时!type=" + type.toString()); all_success = false; }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("type=" + type.toString() + " 发送评论:" + json["data"]["success_toast"]) show_alert("type=" + type.toString() + " 发送评论:" + json["data"]["success_toast"]) } else { console.log("type=" + type.toString() + " 发送评论失败,code!=0") show_alert("type=" + type.toString() + " 发送评论失败,code!=0") all_success = false; return } } catch { console.log("type=" + type.toString() + " 发送评论失败,解析json失败") show_alert("type=" + type.toString() + " 发送评论失败,解析json失败") all_success = false; return } } }; } // 发送dny 传入转发的评论内容 function dny(forward_comment_content) { // 构建url var url = "https://api.bilibili.com/x/dynamic/feed/create/dyn?csrf=" + getCookie("bili_jct") // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.setRequestHeader("Content-Type", "application/json, text/plain, */*"); httpRequest.withCredentials = true; var data_json = { "dyn_req":{ "content":{ "contents":[ { "raw_text":forward_comment_content, "type":1, "biz_id":"" } ] }, "scene":4, "upload_id": getCookie("DedeUserID") + get_now_date(), "meta":{ "app_meta":{ "from":"create.dynamic.web", "mobi_app":"web" } } }, "web_repost_src":{ "dyn_id_str":page_id } }; // 发送请求 将请求参数写在URL中 httpRequest.send(JSON.stringify(data_json)); httpRequest.onerror = function(error) { console.log("请求dny接口出错!" + error); show_alert("请求dny接口出错!" + error); all_success = false; return; }; httpRequest.ontimeout = function() { console.log("请求dny接口超时!"); show_alert("请求dny接口超时!"); all_success = false; return; }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("dny成功") show_alert("dny成功") // 关闭页面 setTimeout(function(){window.close();}, operation_interval*0 + common_append_time + random_num(common_random_time)) } else { console.log("dny失败,code!=0") show_alert("dny失败,code!=0") all_success = false; return } } catch { console.log("dny失败,解析json失败") show_alert("dny失败,解析json失败") all_success = false; return } } }; } // 转发 传入转发的评论内容 function forward(forward_comment_content) { // 构建url var url = "https://api.vc.bilibili.com/dynamic_repost/v1/dynamic_repost/repost" // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.setRequestHeader("accept", "application/json, text/plain, */*"); httpRequest.setRequestHeader("content-type", "application/json;charset=UTF-8"); httpRequest.withCredentials = true; var data = '{"uid":' + getCookie("DedeUserID")+',"dynamic_id":' + page_id +',"content":"' + forward_comment_content + '","ctrl": "[]","csrf":"' + getCookie("bili_jct") + '"}'; // console.log(data) // 发送请求 将请求参数写在URL中 httpRequest.send(data); httpRequest.onerror = function(error) { console.log("请求转发接口出错!" + error); show_alert("请求转发接口出错!" + error); all_success = false; return; }; httpRequest.ontimeout = function() { console.log("请求转发接口超时!"); show_alert("请求转发接口超时!"); all_success = false; return; }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { switch (json["code"]) { case 0: console.log('转发动态 成功转发一条动态'); show_alert('转发动态 成功转发一条动态'); return case 1101004: console.log('转发动态 该动态不能转发分享'); show_alert('转发动态 该动态不能转发分享'); all_success = false; return case 2201116: console.log('转发动态 请求数据发生错误,请刷新或稍后重试'); show_alert('转发动态 请求数据发生错误,请刷新或稍后重试'); all_success = false; return case 1101008: console.log('转发动态 操作太频繁了,请稍后重试'); show_alert('转发动态 操作太频繁了,请稍后重试'); all_success = false; return default: console.log('转发动态 未知错误'); show_alert('转发动态 未知错误'); all_success = false; return } } catch { console.log("转发动态 失败,解析json失败") show_alert("转发动态 失败,解析json失败") all_success = false; return } } }; } // 转发 传入转发的评论内容 暂不可用 function forward2(forward_comment_content) { // 构建url var url = "https://api.bilibili.com/x/dynamic/feed/create/submit_check?csrf=" + getCookie("bili_jct") // 建立所需的对象 var httpRequest = new XMLHttpRequest(); // 打开连接 将请求参数写在url中 httpRequest.open('POST', url, true); httpRequest.setRequestHeader("Content-Type", "application/json, text/plain, */*"); httpRequest.withCredentials = true; var data_json = {"content":{"contents":[{"raw_text":forward_comment_content,"type":1,"biz_id":""}]}}; // 发送请求 将请求参数写在URL中 httpRequest.send(JSON.stringify(data_json)); httpRequest.onerror = function(error) { console.log("请求转发接口出错!" + error); show_alert("请求转发接口出错!" + error); all_success = false; return; }; httpRequest.ontimeout = function() { console.log("请求转发接口超时!"); show_alert("请求转发接口超时!"); all_success = false; return; }; // 获取数据后的处理程序 httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { // 获取到json字符串 var ret = httpRequest.responseText; //console.log(ret); // 转为JSON对象 var json = JSON.parse(ret); console.log(json); try { if(json["code"] == 0) { console.log("转发动态成功") show_alert("转发动态成功") // 请求dny dny(forward_comment_content) } else { console.log("转发动态失败,code!=0") show_alert("转发动态失败,code!=0") all_success = false; return } } catch { console.log("转发动态失败,解析json失败") show_alert("转发动态失败,解析json失败") all_success = false; return } } }; } setTimeout(function() { // 先判断是否点过赞,点过赞就是转发过了,直接return if(document.getElementsByClassName("bili-dyn-action like active")[0]) { console.log("已点赞,即将关闭") show_alert("已点赞,即将关闭") // 关闭页面 setTimeout(function(){window.close();}, random_num(common_random_time)) return } else { console.log("未点赞") show_alert("未点赞") // 点赞 setTimeout(function(){ try { document.getElementsByClassName("bili-dyn-action like")[0].click() setTimeout(function(){ // 判断点赞是否成功 if(document.getElementsByClassName("bili-dyn-action like active")[0]) { console.log("点赞成功") show_alert("点赞成功") } else { console.log("点赞失败") show_alert("点赞失败") all_success = false; return } }, operation_interval + random_num(common_random_time)) } catch { // 点赞失败多半是页面没有加载成功,尝试刷新页面重载 location.reload(); } }, random_num(common_random_time)) } }, operation_interval*1 + common_append_time + random_num(common_random_time)) setTimeout(function() { // 下滑加载数据 window.scroll(0, 1920*100); }, operation_interval*2 + common_append_time + random_num(common_random_time)) setTimeout(function() { // 判断是否是预约动态 没预约 if(document.getElementsByClassName("uncheck")[0]) { // 是否开启了预约抽奖 if(data_json["order_checkbox"] == true) { console.log("预约动态 没预约,预约后关闭页面") show_alert("预约动态 没预约,预约后关闭页面") setTimeout(function(){document.getElementsByClassName("uncheck")[0].click();}, random_num(common_random_time)) } else { console.log("预约动态 没预约,即将关闭页面") show_alert("预约动态 没预约,即将关闭页面") } // 关闭页面 setTimeout(function(){window.close();}, operation_interval + random_num(common_random_time)) return } else if(document.getElementsByClassName("check")[0]) { console.log("预约动态 预约了,即将关闭页面") show_alert("预约动态 预约了,即将关闭页面") // 关闭页面 setTimeout(function(){window.close();}, operation_interval + random_num(common_random_time)) } else { console.log("非预约动态") show_alert("非预约动态") } }, operation_interval*3 + common_append_time + random_num(common_random_time)) // 评论配置不为空 则会进行评论 var comment_content = data_json["comment_content"] console.log("comment_content=" + comment_content) show_alert("评论内容=" + comment_content) if(comment_content != "") { // 是否使用api方式 if(data_json["use_api_checkbox"] == true) { // 调接口发送评论 setTimeout(function(){ try { var oid = JSON.parse(document.getElementsByClassName("list-item reply-wrap")[0].getAttribute("mr-show"))["msg"]["oid"] // 此处的接口存在变动,2个都进行尝试 send_comment(oid, 11, comment_content) setTimeout(function(){ send_comment(page_id, 17, comment_content) }, operation_interval + random_num(common_random_time)) } catch { // 获取oid失败 console.log("获取oid失败,切换为模拟手动模式") show_alert("获取oid失败,切换为模拟手动模式") // 修改评论框 setTimeout(function(){ document.getElementsByClassName("ipt-txt")[0].innerText = comment_content // 校验修改是否成功,此处只有首次修改才能生效(巨坑) setTimeout(function(){ if(document.getElementsByClassName("ipt-txt")[0].innerHTML != comment_content) { console.log("修改评论框失败") show_alert("修改评论框失败") all_success = false; return } }, operation_interval + random_num(common_random_time)) }, random_num(common_random_time)) // 点击评论按钮 setTimeout(function(){ document.getElementsByClassName("comment-submit")[0].click() }, operation_interval*2 + random_num(common_random_time)) } }, operation_interval*5 + common_append_time + random_num(common_random_time)) } else { // 修改评论框 setTimeout(function(){ document.getElementsByClassName("ipt-txt")[0].innerText = comment_content // 校验修改是否成功,此处只有首次修改才能生效(巨坑) setTimeout(function(){ if(document.getElementsByClassName("ipt-txt")[0].innerHTML != comment_content) { console.log("修改评论框失败") show_alert("修改评论框失败") all_success = false; return } }, operation_interval + random_num(common_random_time)) }, operation_interval*5 + common_append_time + random_num(common_random_time)) // 点击评论按钮 setTimeout(function(){ document.getElementsByClassName("comment-submit")[0].click() }, operation_interval*7 + common_append_time + random_num(common_random_time)) } } // 点击转发页面 setTimeout(function(){document.getElementsByClassName("bili-dyn-action forward")[0].click()}, operation_interval*8 + common_append_time + random_num(common_random_time)) // 转发评论配置不为空 则会进行转发评论 var forward_comment_content = data_json["forward_comment_content"] console.log("forward_comment_content=" + forward_comment_content) show_alert("转发评论内容=" + forward_comment_content) // 是否使用api方式 if(data_json["use_api_checkbox"] == true) { setTimeout(function(){ if(forward_comment_content != "") { forward(forward_comment_content) } else { forward("转发动态") } }, operation_interval*9 + common_append_time + random_num(common_random_time)) } else { if(forward_comment_content != "") { // 修改转发评论框 setTimeout(function(){ // 转发评论框是空的 if(document.getElementsByClassName("bili-rich-textarea__inner empty")[0]) { var inpEle = document.getElementsByClassName("bili-rich-textarea__inner")[0]; var st = forward_comment_content var evt = new InputEvent('input', { inputType: 'insertText', data: st, dataTransfer: null, isComposing: false }); inpEle.value = st; inpEle.dispatchEvent(evt); setTimeout(function(){ // 检查转发评论内容是否成功输入 if(document.getElementsByClassName("bili-rich-textarea__inner empty")[0]) { console.log("修改转发评论框失败") show_alert("修改转发评论框失败") all_success = false; return } }, operation_interval + random_num(common_random_time)) } else { // 点击表情包 document.getElementsByClassName("bili-dyn-forward-publishing__emoji")[0].click() setTimeout(function(){ // 发送一个随机表情 document.getElementsByClassName("bili-emoji__list__item bili-emoji__list__item small")[random_num(23)].click() }, operation_interval + random_num(common_random_time)) setTimeout(function(){ // 检查表情包是否发送成功 if(document.getElementsByClassName("bili-rich-textarea__inner")[0].innerHTML.indexOf("<img") != 1) { console.log("发送一个随机表情失败") show_alert("发送一个随机表情失败") all_success = false; return } }, operation_interval*2 + random_num(common_random_time)) } }, operation_interval*9 + common_append_time + random_num(common_random_time)) // 点击转发 setTimeout(function(){document.getElementsByClassName("bili-dyn-forward-publishing__action__btn")[0].click()}, operation_interval*12 + common_append_time + random_num(common_random_time)) } } // 只有所有操作都成功 才会关闭页面 if(all_success == true) { // 关闭页面 setTimeout(function(){window.close();}, operation_interval*13 + common_append_time + random_num(common_random_time)) } } // 随机一个0-x的整数 function random_num(x) { return Math.round(Math.random() * x) } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址