您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
淘宝列表页面的宽度以适合宽屏显示 6个
当前为
// ==UserScript== // @name 淘宝列表页面的宽度 // @version 1.3 // @author amer0798 // @icon https://www.taobao.com/favicon.ico // @description 淘宝列表页面的宽度以适合宽屏显示 6个 // @match *://s.taobao.com/* // @include https://s.taobao.com/* // @grant GM_getResourceText // @grant GM_addStyle // @grant none // @namespace https://greasyfork.org/users/740997 // ==/UserScript== (function() { 'use strict'; var css = ` .grid-right{display:none!important}.grid-left{width:100%!important}.m-header-fixed .header-inner{left:50%;margin-left:-534px}.response-wider .grid-total{width:1664px!important} .tb-side{left:96.5%} `; var style=document.createElement("style"); style.innerText=css; document.getElementsByTagName('head')[0].appendChild(style); })();