Created
June 11, 2024 02:37
-
-
Save saviorxzero98/7d6f39dc4c2df18eb1486536594ec5f8 to your computer and use it in GitHub Desktop.
Bing桌布圖片副檔名
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bing桌布圖片副檔名轉換 | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description 開啟Bing桌布圖片時,將副檔名從WebP轉換成JPG | |
// @author saviorxzero98 | |
// @license MIT | |
// @match https://www.bing.com/* | |
// @icon https://www.bing.com/sa/simg/favicon-trans-bg-blue-mg-png.png | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
window.stop(); | |
var url = document.URL; | |
if (url.includes("_1920x1080.webp")) | |
{ | |
url = url.replace("_1920x1080.webp" ,"_1920x1080.jpg"); | |
window.location.replace(url); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment