您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
9/21/2023, 3:18:06 PM
当前为
// ==UserScript== // @name GreasyFork: Better Webhook Info Page // @namespace UserScripts // @match https://greasyfork.org/* // @grant none // @version 0.1.0 // @author CY Fung // @license MIT // @description 9/21/2023, 3:18:06 PM // @run-at document-end // ==/UserScript== (()=>{ if(!location.pathname.includes('/users/webhook-info')) return; document.head.appendChild(document.createElement('style')).textContent=` #main-header ~ .width-constraint > .text-content:only-child > ul li { font-size:0.88rem; } #main-header ~ .width-constraint > .text-content:only-child > ul a:first-child{ display:block; font-size: 1rem; margin-top: 4px; text-decoration: none; } #main-header ~ .width-constraint > .text-content:only-child > ul a ~ a{ color: #383855; text-decoration: none; } ` })()