您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
高亮美卡论坛帖子的点赞和回应(姚明,troll...)并贴靠到左侧显示,方便爬楼
// ==UserScript== // @name 美卡论坛高亮点赞和回应 // @version 0.10.0 // @description 高亮美卡论坛帖子的点赞和回应(姚明,troll...)并贴靠到左侧显示,方便爬楼 // @author [email protected] // @include http*://*uscardforum.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=uscardforum.com // @namespace https://greasyfork.org/users/767596 // ==/UserScript== (function () { 'use strict'; let style = document.createElement('style'); document.head.appendChild(style); style.sheet.insertRule('.post-controls { display: inline-flex !important; }', 0); style.sheet.insertRule('.reactions-counter { color: #39c5bb !important; font-weight: bold !important; }', 1); })();