您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dark mode for Get Emoji
// ==UserScript== // @name 🌚 Dark Get Emoji // @namespace https://gf.qytechs.cn/pl/users/1081704-nameniok // @version 1.0.4 // @author Nameniok // @description Dark mode for Get Emoji // @run-at document-start // @match https://getemoji.com/ // @grant none // @license MIT // ==/UserScript== (function() { var DarkGetEmojiStyles = document.createElement('style'); DarkGetEmojiStyles.textContent = ` body { background-color: #111 !important; color: #ccc !important; } input { background-color: #333 !important; outline: none !important; } .emoji-button { border-width: 0px !important; } .emoji-button:hover { background-color: transparent !important; } .emoji-copied-text { background-color: #222 !important; border-width: 0px !important; color: #ccc !important; } *::-webkit-scrollbar { width: 12px; height: 12px; } *::-webkit-scrollbar-track { background: transparent; } *::-webkit-scrollbar-thumb { background-color: #222; border-radius: 6px; } *::-webkit-scrollbar-thumb:hover { background-color: #333; } *::-webkit-scrollbar-corner { background-color: transparent; } * { scrollbar-width: thin; scrollbar-color: #222 transparent; } *:hover { scrollbar-color: #333 transparent; } `; document.documentElement.insertAdjacentHTML('afterbegin', DarkGetEmojiStyles.outerHTML); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址