// ==UserScript== // @icon https://market.m.taobao.com/favicon.ico // @name 淘宝、天猫「颜色分类」显示优化 // @namespace https://github.com/ekoooo // @version 0.1 // @description 原样式:PC 端宝贝详情「颜色分类」为图片列表,需鼠标移动到上面才显示分类文字。➡️优化后:类似 APP 端显示文字,一目了然 // @author liuwanlin // @match *://*.taobao.com/* // @match *://*.tmall.com/* // @match *://*.tmall.hk/* // @match *://*.liangxinyao.com/* // @grant GM_addStyle // @downloadURL none // ==/UserScript== GM_addStyle(` .tb-prop .tb-img li a { background-position-x: 5px !important; background-size: 30px 30px !important; width: inherit !important; } .tb-prop .tb-img li span { display: block !important; text-indent: initial; padding: 0 10px !important; margin-left: 30px; } `);