您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
bilibili网站操作脚本
// ==UserScript== // @name bilibili script // @namespace http://tampermonkey.net/ // @version 0.36.1 // @description bilibili网站操作脚本 // @author You // @match https://www.bilibili.com/ // @match https://search.bilibili.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // @license MIT // ==/UserScript== (function () { "use strict"; // Your code here... // bilibili网站加载成功后执行,去除一些模块 window.onload = function () { console.log( "%csuccess%c:", "background:#47c00e;padding:3px;border-radius:3px", "", "脚本加载成功" ); //方法内容 let currentUrl = window.location.href; if (currentUrl.indexOf("https://www.bilibili.com/") == 0) { // 移除首页多余卡片 RemoveCard(); // 执行快捷键刷新和数字键跳转视频操作 RefreshRecommend(); } if (currentUrl.indexOf("https://search.bilibili.com/") == 0) { // 执行快捷键刷新和数字键跳转视频操作 searchPageSelectCard(); } }; function RemoveCard() { let section_index = [ 6, 7, 8, 9, 10, 11, 13, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, ]; let documentary = document.querySelectorAll(".bili-grid"); // console.log('纪录片',documentary); for (let i = 0; i < section_index.length; i++) { documentary[section_index[i]].remove(); // documentary[section_index[i]].style.display="none"; } let bili_footer = document.querySelectorAll(".bili-footer"); // console.log('bili_footer',bili_footer); bili_footer[0].remove(); } // 快捷键,快捷刷新推荐视频 function RefreshRecommend() { // alt+r按键监听 document.addEventListener("keydown", function (event) { // 检测到光标聚焦于输入框时,则不触发快捷键事件。 if ( ["input", "textarea"].indexOf(event.target.tagName.toLowerCase()) > -1 ) { return false; } if (event.altKey && event.keyCode == 82) { event.preventDefault(); // console.log('alt+r'); // 快捷键按下后,执行的方法 let refresh_button = document.querySelectorAll(".roll-btn-wrap")[0].children[0]; refresh_button.click(); } // 监听数字键盘 if (event.keyCode >= 48 && event.keyCode <= 57 && !event.ctrlKey) { event.preventDefault(); let num = event.keyCode - 48 > 0 ? event.keyCode - 48 : 10; // 获取推荐视频的卡片 try { let recommend_video = document.querySelectorAll( ".recommend-container__2-line" )[0].children[num].children[1].children[0]; // 点击相应卡片 recommend_video.click(); return; } catch (error) { console.log( "%cerror%c:", "background:#ff0000;padding:3px;border-radius:3px", "", '未获取到元素' ); } } }); } function searchPageSelectCard() { document.addEventListener("keydown", function (event) { // 检测到光标聚焦于输入框时,则不触发快捷键事件。 if ( ["input", "textarea"].indexOf(event.target.tagName.toLowerCase()) > -1 ) { return false; } // 监听数字键盘 if (event.keyCode >= 48 && event.keyCode <= 57 && !event.ctrlKey) { event.preventDefault(); let num = event.keyCode - 48 > 0 ? event.keyCode - 48 : 10; // 获取搜索页面的视频卡片 try { let search_video = document.querySelectorAll( ".bili-video-card__wrap" )[num].children[0]; // 点击相应卡片 search_video.click(); } catch (error) { console.log( "%cerror%c:", "background:#ff0000;padding:3px;border-radius:3px", "", error ); } } }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址