Greasy Fork is available in English.
Resizes images to their raw size on twitter
当前为
// ==UserScript==
// @name Resize Twitter Image On New Tab
// @namespace TwitrImgResize
// @version 1.0
// @description Resizes images to their raw size on twitter
// @run-at document-idle
// @match https://pbs.twimg.com/media/*
// ==/UserScript==
function replace(){
var url = document.location.toString();
if(url.endsWith("?format=jpg&name=orig")===false){
location.replace(url + "?format=jpg&name=orig");
}
}
replace();