您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 // @homepageURL https://greasyfork.runtimutd.eu.org/en/scripts/377358-resize-twitter-image-on-new-tab // @run-at document-idle // @match https://pbs.twimg.com/media/* // ==/UserScript== function replace(){ var url = document.location.toString(); var type = url.substring(url.lastIndexOf(".")+1, url.lastIndexOf(".")+4); if(url.endsWith("?format="+type+"&name=orig")===false){ location.replace(url + "?format="+type+"&name=orig"); } } replace();