// ==UserScript== // @name ESJ Zone:更好的用戶介面 // @namespace https://jasonhk.dev/ // @version 1.0.0 // @description 透過調整 ESJ Zone 的用戶介面來改善使用體驗。 // @author Jason Kwok // @license MIT // @grant GM_addStyle // @run-at document-start // @match https://www.esjzone.cc/my/favorite* // @downloadURL none // ==/UserScript== (function() { let css = ` .product-title { width: revert; white-space: revert; } `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();