您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
(For Dark Reader): restore a visual distinction between checkboxes and are and are not grayed out.
// ==UserScript== // @name Dark Reader checkbox fix // @namespace https://github.com/nate-kean/ // @version 2025-10-01 // @description (For Dark Reader): restore a visual distinction between checkboxes and are and are not grayed out. // @author Nate Kean // @match https://us2.admin.mailchimp.com/campaigns/edit* // @icon https://www.google.com/s2/favicons?sz=64&domain=mailchimp.com // @grant none // @license MIT // ==/UserScript== (function() { document.head.insertAdjacentHTML("beforeend", ` <style id="nates-css-that-fixes-the-checkbox-icons"> .empty-3FSP- { filter: invert(1); } </style> `); })();