Greasy Fork is available in English.

consent chrome web store figuccio

bypass consenso dei cookie sul web store di chrome

// ==UserScript==
// @name         consent chrome web store figuccio
// @namespace    https://greasyfork.org/users/237458
// @version      0.3
// @description  bypass consenso dei cookie sul web store di chrome
// @author       figuccio
// @match        https://consent.google.com/m?continue=https://chrome.google.com/webstore?utm_source%3Dchrome-ntp-icon&gl=IT&m=0&pc=cws&hl=it&src=1
// @match        https://consent.google.com/ml?continue=https://chrome.google.com/webstore/category/extensions?hl%3Dit&gl=IT&hl=it&pc=cws&src=1
// @icon         https://www.google.com/s2/favicons?domain=google.com
// @grant        none
// @license        MIT
// ==/UserScript==
(function() {
    'use strict';
document.cookie = "CONSENT=YES+cb.20211026-09-p1.it+FX+630; domain=.google.com;max-age=315360000";
//su chrome
if (document.URL =="https://consent.google.com/m?continue=https://chrome.google.com/webstore?utm_source%3Dchrome-ntp-icon&gl=IT&m=0&pc=cws&hl=it&src=1") window.location.href = "https://chrome.google.com/webstore/category/extensions?utm_source=chrome-ntp-icon";
//su edge
if (document.URL =="https://consent.google.com/ml?continue=https://chrome.google.com/webstore/category/extensions?hl%3Dit&gl=IT&hl=it&pc=cws&src=1") window.location.href = "https://chrome.google.com/webstore/category/extensions?hl=it";

})();