Greasy Fork is available in English.

No "Before you continue" pop-up on Youtube and Google

Remove the "Before you continue" popup from Google and YouTube

// ==UserScript==
// @name         No "Before you continue" pop-up on Youtube and Google
// @version      0.1
// @description  Remove the "Before you continue" popup from Google and YouTube
// @author       AstroVD
// @match        https://www.google.com/*
// @match        https://www.youtube.com/*
// @grant        none
// @namespace https://greasyfork.org/users/651064
// ==/UserScript==


const style = document.createElement('style');

console.log("i")

if(location.href.startsWith("https://www.google.com")){
style.innerHTML = /* css */ `
  html {
    overflow: auto !important;
  }
  
  .gTMtLb > div[class=""] {
    display: none !important;
  }
`;
}
if(location.href.startsWith("https://www.youtube.com")){
  style.innerHTML = /* css */ `
  iron-overlay-backdrop {
    display: none !important;
  }
  
  #consent-bump {
    display: none !important;
  }
`;
}
document.head.append(style);