您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dark mode in Snap! Community Site
当前为
// ==UserScript== // @name Snap Community Site dark mode // @namespace http://tampermonkey.net/ // @version 2025-03-24 // @description Dark mode in Snap! Community Site // @author this_is_some1 // @match https://snap.berkeley.edu/* // @icon https://snap.berkeley.edu/static/img/favicon.ico // @grant none // @license MIT // @run-at document-start // ==/UserScript== var afsd = document.createElement("div"); afsd.innerHTML = `<style>a { color: #9d9d9d !important; } a h1, a h2, a h3, a h4 { color: #FFF !important; } .collection .description, .project.big .notes { color: #000 !important; } .body { color: #000 !important; background-color: rgb(26, 26, 26) !important; } body { color: white !important; background-color: rgb(26, 26, 26) !important; } .pure-button { background-color: #313131 !important; } .nav-link { color: #FFF !important; } .nav-link:hover, .nav-link.show { color: black !important; } </style>` document.head.appendChild(afsd);