Greasy Fork is available in English.
no more arte nagscreen! and always open descriptions (no more "click here to read more...")
当前为
// ==UserScript==
// @name arte stop nagging me
// @namespace http://tampermonkey.net/
// @version 3.1
// @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
// ==/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);
if (document.querySelectorAll(".ds-78gfl4")[0]) {
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);
});