// ==UserScript== // @name arte stop nagging me // @namespace http://tampermonkey.net/ // @version 2 // @description no more arte nagscreen! // @author mihau // @match https://www.arte.tv/de/videos/* // @match https://www.arte.tv/fr/videos/* // @license MIT // @downloadURL none // ==/UserScript== window.addEventListener('DOMContentLoaded', function() { setTimeout(function() { if (document.querySelectorAll(".avp-morality__content")[0]) { document.querySelectorAll(".avp-morality__content")[0].querySelectorAll('[aria-describedby=""]')[0].click(); } }, 5000); });