您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
访问Bilibili首页时自动跳转到Bilibili搜索页,避免看到其它干扰内容
// ==UserScript== // @name BiliSearch as BiliHome | 将B站搜索作为B站首页 // @namespace none // @version 0.4 // @description 访问Bilibili首页时自动跳转到Bilibili搜索页,避免看到其它干扰内容 // @author CDN // @match https://bilibili.com // @match https://www.bilibili.com // @icon https://static.hdslb.com/images/favicon.ico // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function() { 'use strict'; // 中止加载 window.stop ? window.stop() : document.execCommand("Stop"); // 自动跳转 window.location = "https://search.bilibili.com"; })();