Skip to content

Instantly share code, notes, and snippets.

@saviorxzero98
Created June 11, 2024 02:37
Show Gist options
  • Save saviorxzero98/7d6f39dc4c2df18eb1486536594ec5f8 to your computer and use it in GitHub Desktop.
Save saviorxzero98/7d6f39dc4c2df18eb1486536594ec5f8 to your computer and use it in GitHub Desktop.
Bing桌布圖片副檔名
// ==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