您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
哔哩哔哩失效视频自动跳转
// ==UserScript== // @name BiliPlus+ // @namespace https://www.biliplus.com // @version 1.13.73 // @description 哔哩哔哩失效视频自动跳转 // @author 蓝云 // @icon https://www.biliplus.com/favicon.ico // @license MIT // @include http*://*.bilibili.com/* // @require https://code.jquery.com/jquery-latest.js // @run_at document_idle // ==/UserScript== //视频跳转 $(window).load(function () { let body = $('body'); if ($('.error-container').length > 0) location.replace(location.href.replace(/\:\/\/www\.bilibili\.com\/video/, '://www.biliplus.com/video')); if ($('.video-list-status-text').length > 0) location.replace(location.href.replace(/\:\/\/bangumi\.bilibili\.com\/anime/, '://www.biliplus.com/bangumi/i')); if ($('.player-limit-wrap').length > 0) location.replace(location.href.replace(/\:\/\/www\.bilibili\.com/, '://www.biliplus.com')); //收藏夹跳转 body.mouseover(function () { $('.small-item.disabled').each(function () { $(this).removeClass('disabled'); $(this).find('a').attr('href', 'https://www.biliplus.com/video/' + $(this).attr('data-aid')); }); }); if (orginPopularize.length > 0) { } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址