Google-Consent-Cookie figuccio

accetta consent cookie ottobre 2023

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name           Google-Consent-Cookie figuccio
// @version        0.2
// @description    accetta consent cookie ottobre 2023
// @author         figuccio
// @namespace      https://greasyfork.org/users/237458
// @match          *://www.google.de/*
// @match          https://*.google.com/*
// @match          https://*.google.it/*
// @match          https://*.google.fr/*
// @match          https://*.google.es/*
// @icon           https://www.google.com/favicon.ico
// @run-at         document-start
// @license        MIT
// ==/UserScript==
//accetta consent traduttore
setTimeout(function(){document.querySelector("#yDmH0d > c-wiz > div > div > div > div.NIoIEf > div.G4njw > div.AIC7ge > div.CxJub > div.VtwTSb > form:nth-child(1) > div > div > button > div.VfPpkd-RLmnJb").click();},1000);
//cookie consent accetta cookie
if (!document.cookie.match("(^|;)\\s*CONSENT=YES\\+")) {
    document.cookie="CONSENT=YES+domain=.google.com;max-age=31536000";
    document.cookie="CONSENT=YES+domain=.google.it;max-age=31536000";
    document.cookie="CONSENT=YES+domain=.google.fr;max-age=31536000";//francia
    document.cookie="CONSENT=YES+domain=.google.es;max-age=31536000";//spagna
    document.cookie="CONSENT=YES+domain=.google.de;max-age=31536000";//tedesco
  location.reload();
}