您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fxxk 996
// ==UserScript== // @name 电脑端淘宝修正详情图片比例 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Fxxk 996 // @author Hanayo // @match https://item.taobao.com/item.htm* // @match https://detail.tmall.com/item.htm* // @icon https://www.google.com/s2/favicons?domain=taobao.com // @require https://code.jquery.com/jquery-3.6.0.min.js // @require https://cdn.bootcdn.net/ajax/libs/jquery-mousewheel/3.1.9/jquery.mousewheel.min.js // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function() { //弱智CSS 'use strict'; $('body').on('mousewheel', function(event) { const box = $("#J_DivItemDesc").find("img") box.each(function(index,element){ element.removeAttribute("width"); element.removeAttribute("height"); }) }); })();