Greasy Fork

derStandard DSGVO ismawurscht

try to take over the world (and read derStandard without the annoying popup)!

目前为 2021-03-04 提交的版本。查看 最新版本

// ==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/", "/"));
    }

})();