您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在网页打开B站webp的表情包时,自动改为png表情包
// ==UserScript== // @name B站png表情包 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 在网页打开B站webp的表情包时,自动改为png表情包 // @license MIT // @author LetMeFork // @match https://i0.hdslb.com/bfs/garb/* // @icon http://bilibili.com/favicon.ico // @grant none // ==/UserScript== (function() { // 获取当前页面的URL var currentUrl = window.location.href; // 检查URL中是否包含"@" if (currentUrl.includes("@")) { // 查找"@"的位置 var atIndex = currentUrl.indexOf("@"); // 删除"@"及其后面的字符 var newUrl = currentUrl.substring(0, atIndex); // 重定向到新的URL window.location.href = newUrl; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址