Greasy Fork is available in English.
Allows one to automatically get redirected to a FANDOM-hosted WEBP image's original extension.
当前为
// ==UserScript==
// @name FANDOM WEBP-to-original redirector
// @namespace Violentmonkey Scripts
// @match https://static.wikia.nocookie.net/*/images/*/*/*.*/revision/latest?cb=*
// @match https://static.fandom.nocookie.net/*/images/*/*/*.*/revision/latest?cb=*
// @exclude https://static.wikia.nocookie.net/*/images/*/*/*.webp/*
// @exclude https://static.fandom.nocookie.net/*/images/*/*/*.webp/*
// @grant none
// @version 1.0
// @author https://github.com/Palpabols
// @description Allows one to automatically get redirected to a FANDOM-hosted WEBP image's original extension.
// ==/UserScript==
window.location.href = window.location.pathname.replace('/revision/latest', '') + "?format=original";