您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A Better chat for Bloxd.io!
- // ==UserScript==
- // @name Chat+
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description A Better chat for Bloxd.io!
- // @author Uoksisss
- // @match https://bloxd.io/
- // @icon https://www.google.com/s2/favicons?sz=64&domain=bloxd.io
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- function betterChat() {
- const chatMessages = document.querySelectorAll('.ChatMessages');
- const chatInput = document.querySelector('.ChatInput');
- const messageStyles = {
- color: '#fff',
- padding: '10px',
- borderRadius: '15px 0 15px 15px',
- borderTopLeftRadius: '15px',
- boxShadow: '0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.7)',
- backdropFilter: 'blur(5px)'
- };
- const inputStyles = {
- color: '#fff',
- padding: '10px',
- borderRadius: '5px 0 5px 5px',
- borderTopLeftRadius: '5px',
- boxShadow: '0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.7)',
- backdropFilter: 'blur(5px)'
- };
- if (chatMessages.length > 0) {
- chatMessages.forEach((chatMessage) => {
- Object.assign(chatMessage.style, messageStyles);
- });
- }
- if (chatInput) {
- Object.assign(chatInput.style, inputStyles);
- }
- }
- setInterval(betterChat, 730)
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址