Greasy Fork

b站显示原图(lchzh ver.)

查看b站图片时自动去除webp等后缀

// ==UserScript==
// @name         b站显示原图(lchzh ver.)
// @namespace    http://tampermonkey.net/
// @version      0.2.5
// @description  查看b站图片时自动去除webp等后缀
// @author       lchzh3473
// @match        *://*.hdslb.com/*@*
// @match        *://*.biliimg.com/*@*
// @icon         https://app.bilibili.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    location.href=location.href.replace(/@(((\d+)[WHSEPQOCwhsepqoc]|progressive|!(web-article-pic|web-space-index-myvideo))_?)*(\.(|webp|gif|png|jpg|jpeg|avif))?$/,"");
})();