GeoGuessr Better Emotes Wheel

Simplifies the look of the emote wheel by getting rid of a lot of the bloat

当前为 2025-03-09 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        GeoGuessr Better Emotes Wheel
// @namespace   https://greasyfork.org/en/users/1435525-rawblocky
// @match       https://www.geoguessr.com/*
// @icon        https://www.google.com/s2/favicons?sz=64&domain=geoguessr.com
// @grant       GM_addStyle
// @license     MIT
// @version     1.0
// @author      Rawblocky
// @description Simplifies the look of the emote wheel by getting rid of a lot of the bloat
// ==/UserScript==


// Configuration
const emoteMenuOpacity = 0.1 // 0 = Transparent, 1 = Opaque
const emoteMenuBlurAmount = 0.25 // How blurred should the emote menu background be?


// Code
GM_addStyle(`

/* Remove background blur */
[class*="emote-wheel_overlay__"] {display: none !important}

/* Wheel effects */
[class*="emote-wheel_wheel__"] {
  /* Remove 3D effect */
  transform: perspective(600px) !important;
  /* Add blur */
  backdrop-filter: blur(${emoteMenuBlurAmount}rem) !important;
  -webkit-backdrop-filter: blur(${emoteMenuBlurAmount}rem) !important;
  /* Remove transition + add background color */
  animation: none !important;
  background-color: rgb(0 0 0 / ${emoteMenuOpacity}) !important
}

/* Remove wedges */
[class*="emote-wheel_svgButton__"] {animation: none !important}

/* Change button easing */
[class*="emote-wheel_root__"] {--smooth: cubic-bezier(0,1,0.49,1.04) !important}

/* Remove emote icons transition/delay */
[class*="emote-wheel_emoteContainer__"] {animation: none !important; opacity: 1 !important}
`);