Greasy Fork is available in English.
no more arte nagscreen!
当前为
// ==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
// ==/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);
});