Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/81c25dd382893a3ac22c3f5fcc237b28.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Geoguessr avatar ad remover
// @description Removes the new Geoguessr avatar ad
// @version 1.0.0
// @license MIT
// @author joniber#5011
// @namespace https://greasyfork.org/users/1072330
// @match https://www.geoguessr.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=geoguessr.com
// @downloadURL none
// ==/UserScript==
//=====================================================================================\\
// don't edit anything after this point unless you know what you're doing \\
//=====================================================================================\\
const OBSERVER_CONFIG = {
characterDataOldValue: false,
subtree: true,
childList: true,
characterData: false,
};
const ERROR_MESSAGE = (wrong) => '${wrong}';
function pathMatches(path) {
return location.pathname.match(new RegExp(`^/(?:[^/]+/)?${path}$`));
}
function onMutationsStandard(mutations, observer) {
let button = document.querySelector('.deal-promo-button_root__nUfyK')
if(button){
let div = button.parentNode
if(div){
div.remove()
button.remove()
}
}
}
const observer = new MutationObserver(onMutationsStandard);
observer.observe(document.body, OBSERVER_CONFIG);