在网页打开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;
}
})();