您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace the .webp extension to .png in the URL.
// ==UserScript== // @name 7tv replace webp to png // @namespace https://greasyfork.org/en/users/1385483-nakama // @version 2024-10-24 // @description Replace the .webp extension to .png in the URL. // @author nakama // @match https://cdn.7tv.app/emote/*/*.webp // @run-at document-start // @icon https://www.google.com/s2/favicons?sz=64&domain=7tv.app // @grant none // ==/UserScript== window.location.replace(window.location.href.replace(".webp", ".png"))