Greasy Fork

DSGVO ismawurscht

The world (and read derStandard without the annoying popup

// ==UserScript==
// @name         DSGVO ismawurscht
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  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/", "/"));
    }
 
})();