Greasy Fork is available in English.

Foodora - Remove annoyances!

Remove the annoying review modal and donate/download/pro banner on Foodora

// ==UserScript==
// @name        Foodora - Remove annoyances!
// @description Remove the annoying review modal and donate/download/pro banner on Foodora
// @version     1.3
// @grant       GM_addStyle
// @match       https://www.foodora.at/*
// @match       https://www.foodora.no/*
// @match       https://www.foodora.se/*
// @match       https://www.foodora.fi/*
// @match       https://www.foodora.dk/*
// @match       https://www.foodora.hu/*
// @match       https://www.foodora.sk/*
// @match       https://www.foodora.cz/*
// @icon        https://www.google.com/s2/favicons?sz=64&domain=foodora.at
// @license     GPL v3
// @author      @incognico
// @namespace   https://greasyfork.org/users/931787
// ==/UserScript==

window.setTimeout(
  function check() {
    const reviewModal = document.querySelector('[data-testid=review-survey-modal-testid]');
    if (reviewModal) {
      document.querySelector('button[aria-label=close]')?.click();
    }
    window.setTimeout(check, 250);
}, 250);

GM_addStyle('section:has(.donation-entry-block-initial) { display: none !important; }');
GM_addStyle('.partnership-ads { display: none !important; }');
GM_addStyle('div:has(> .cellphone-illustration) { display: none !important; }');