// ==UserScript== // @name arte stop nagging me // @namespace http://tampermonkey.net/ // @version 3 // @description no more arte nagscreen! and always open descriptions (no more "click here to read more...") // @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("button.ds-1syte4c")[0]) { document.querySelectorAll("button.ds-1syte4c")[0].click(); window.onscroll = function () { window.scrollTo(0, 0); }; setTimeout(function() { window.onscroll = function () {} }, 1000); document.querySelectorAll(".ds-78gfl4")[0].style.display="none"; document.querySelectorAll(".ds-78gfl4")[0].style.visibility="hidden"; } if (document.querySelectorAll(".avp-morality__content")[0]) { document.querySelectorAll(".avp-morality__content")[0].querySelectorAll('[aria-describedby=""]')[0].click(); } }, 5000); });