自动将你在搜索引擎页中点击的B站视频链接跳转至视频主页面
// ==UserScript== // @name B站悬浮窗视频自动跳转视频页 // @namespace https://greasyfork.org/users/759046 // @version 0.1 // @description 自动将你在搜索引擎页中点击的B站视频链接跳转至视频主页面 // @author 233yuzi // @match https://www.bilibili.com/?bvid=* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @license MIT // ==/UserScript== (function() { 'use strict'; autoGo() function autoGo() { let reg = RegExp(/bvid=/) let a = location.href if (a.match(reg)) { a = a.replace("?bvid=", "video/") a = a.split('&')[0] a=a+"/?t=1" console.log(a) location.href = a } } })();