// ==UserScript== // @name Convenient Likes for GeoGuessr // @version 0.1.0 // @author Han75 // @license MIT // @description Adds the Liked Maps button to the singleplayer page for easier access to your liked maps. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://greasyfork.org/scripts/383527-wait-for-key-elements/code/Wait_for_key_elements.js?version=701631 // @match https://www.geoguessr.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=geoguessr.com // @namespace https://greasyfork.org/en/users/973646 // @downloadURL none // ==/UserScript== const element = `
`; waitForKeyElements(".dynamic-layout_container__jaxgg", function(){ if (window.location.href === "https://www.geoguessr.com/singleplayer") { document.querySelector(".dynamic-layout_container__jaxgg").firstChild.innerHTML += element; document.querySelector(".dynamic-layout_container__jaxgg").firstChild.style.flexDirection = "column"; } });