您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the new Geoguessr avatar ad
- // ==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
- // ==/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);