您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Injects custom CSS into the purelymail.com routing page to fix the main element's max-width.
// ==UserScript== // @name Fix Purelymail Routing Page table width // @namespace http://tampermonkey.net/ // @version 1.0 // @description Injects custom CSS into the purelymail.com routing page to fix the main element's max-width. // @author V3ctor Design // @license MIT // @match https://purelymail.com/manage/routing // @grant GM_addStyle // ==/UserScript== GM_addStyle(`main { max-width: 1040px !important; }`);