Greasy Fork is available in English.
try to take over the world (and read derStandard without the annoying popup)!
// ==UserScript==
// @name derStandard DSGVO ismawurscht
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world (and read derStandard without the annoying popup)!
// @author You
// @match *://*.derstandard.at/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.cookie = "DSGVO_ZUSAGE_V1=true;domain=.derstandard.at;path=/";
if (location.href.includes("/consent/tcf/")) {
location.replace(location.href.replace("/consent/tcf/", "/"));
}
})();