View Autohome Source Photo
// ==UserScript== // @name 汽车之家论坛图片原图显示 // @namespace http://tampermonkey.net/ // @version 0.1 // @description View Autohome Source Photo // @author Jack Yang // @match https://*.autoimg.cn/album/* // @grant none // ==/UserScript== (function() { 'use strict'; if(location.href.indexOf("500_") > 0) { location.href = document.location.href.replace(/500_/, ""); } })();