Geoguessr Unity Script

For a full list of features included in this script, see this document https://docs.google.com/document/d/18nLXSQQLOzl4WpUgZkM-mxhhQLY6P3FKonQGp-H0fqI/edit?usp=sharing

< Rückmeldungen auf Geoguessr Unity Script

Rezension: Fehler - Skript funktioniert nicht

§
Veröffentlicht: 30.12.2022

It works but the icons have gone blank for some reason. It was fine about a week ago. I am using the latest version of Firefox and the latest version of the plugin. This is how it looks when I open up the menu (attached)

§
Veröffentlicht: 08.01.2023

The icons are still missing. I would like to contact the author so he can fix this but he doesn't seem to notice.

§
Veröffentlicht: 19.08.2023
Bearbeitet: 19.08.2023

I am not the author but you can fix this in your script yourself:

- in Extensions; under Tampermonkey go to dashboard; click on the edit icon for Unity Geoguessr; around line 1200 add the backgroundSize setting; then save.


for (let element of document.getElementsByClassName("menu-btn"))
{
element.style.backgroundImage = dict[element.id][0];
element.style.backgroundColor = dict[element.id][1];
element.style.backgroundRepeat = "no-repeat";
element.style.backgroundOrigin = "content-box";
element.style.backgroundSize = "contain";
element.style.visibility = "";
}

Antwort schreiben

Anmelden um eine Antwort zu senden.