// ==UserScript== // @name b站显示原图(lchzh ver.) // @namespace http://tampermonkey.net/ // @version 0.2.4 // @description 查看b站图片时自动去除webp等后缀 // @author lchzh3473 // @match *://*.hdslb.com/*@* // @match *://*.biliimg.com/*@* // @icon https://app.bilibili.com/favicon.ico // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; location.href=location.href.replace(/@(((\d+)[WHSEPQOCwhsepqoc]|progressive|!web-article-pic)_?)*(\.(|webp|gif|png|jpg|jpeg))?$/,""); })();