您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bilibili跳过充电自动连播:只会连播分P,不会连播跳转推荐视频.
// ==UserScript== // @name Bilibili跳过充电只连播分P // @namespace https://store.steampowered.com/curator/42409748 // @author GOKURAKU // @description Bilibili跳过充电自动连播:只会连播分P,不会连播跳转推荐视频. // @include https://www.bilibili.com/video/* // @version 1.0 // @icon https://i0.hdslb.com/bfs/emote/f85c354995bd99e28fc76c869bfe42ba6438eff4.png // @connect hdslb.com // @grant GM_xmlhttpRequest // @run-at document-start // @license MIT // ==/UserScript== (function () { var jumpButton = '.bilibili-player-electric-panel-jump'; console.log(`[${GM_info.script.name}]: 开始`); setInterval(() => { if($(jumpButton).length > 0) { $(jumpButton).trigger('click') } }, 200) })(); function addScript(text) { var pattern = ",i.prototype.canPlayerRecommend=function(){"; text = text.replace(pattern, pattern + "return null;"); var newScript = document.createElement('script'); newScript.type = "text/javascript"; newScript.textContent = text; var head = document.getElementsByTagName('head')[0]; head.appendChild(newScript); console.log("Bilibili跳过充电只连播分P:hooked JS"); } (function() { var oldAppendChild = Node.prototype.appendChild; Node.prototype.appendChild = function(...args) { // console.log("appendChild: ", args); if (args[0].src != undefined && args[0].src.search(/jsc-player\.[a-z0-9]+\.js/) != -1) { // found file to hook Node.prototype.appendChild = oldAppendChild; var src = args[0].src; // console.log("hooking...", src); GM_xmlhttpRequest({ method: "GET", url: src, onload: function(response) { addScript(response.responseText); } }); } else { return oldAppendChild.apply(this, args); } } })();