GeoGuessr Better Emotes Wheel

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

目前為 2025-03-09 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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}
`);