Greasy Fork is available in English.

Foodora - Remove annoyances!

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

  1. // ==UserScript==
  2. // @name Foodora - Remove annoyances!
  3. // @description Remove the annoying review modal and donate/download/pro banner on Foodora
  4. // @version 1.3
  5. // @grant GM_addStyle
  6. // @match https://www.foodora.at/*
  7. // @match https://www.foodora.no/*
  8. // @match https://www.foodora.se/*
  9. // @match https://www.foodora.fi/*
  10. // @match https://www.foodora.dk/*
  11. // @match https://www.foodora.hu/*
  12. // @match https://www.foodora.sk/*
  13. // @match https://www.foodora.cz/*
  14. // @icon https://www.google.com/s2/favicons?sz=64&domain=foodora.at
  15. // @license GPL v3
  16. // @author @incognico
  17. // @namespace https://greasyfork.org/users/931787
  18. // ==/UserScript==
  19.  
  20. window.setTimeout(
  21. function check() {
  22. const reviewModal = document.querySelector('[data-testid=review-survey-modal-testid]');
  23. if (reviewModal) {
  24. document.querySelector('button[aria-label=close]')?.click();
  25. }
  26. window.setTimeout(check, 250);
  27. }, 250);
  28.  
  29. GM_addStyle('section:has(.donation-entry-block-initial) { display: none !important; }');
  30. GM_addStyle('.partnership-ads { display: none !important; }');
  31. GM_addStyle('div:has(> .cellphone-illustration) { display: none !important; }');