您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
removes all the crap, shows protection (DRM) status
当前为
// ==UserScript== // @name tele5 video // @namespace Violentmonkey Scripts // @match https://tele5.de/mediathek/* // @exclude https://tele5.de/mediathek/ // @grant none // @description removes all the crap, shows protection (DRM) status // @version 0.0.1.20220228193145 // ==/UserScript== document.getElementsByTagName("body")[0].style.overflow = "hidden"; var onlinebis = document.querySelector('meta[name="twitter:description"]').content; var phonenumbera = new RegExp(".* Online ", "gi"); onlinebis = onlinebis.replace(phonenumbera, ""); var phonenumberb = new RegExp(".* - ", "gi"); onlinebis = onlinebis.replace(phonenumberb, ""); var filmtitel = document.querySelector('meta[name="twitter:title"]').content; var phonenumberc = new RegExp(" - .*", "gi"); filmtitel = filmtitel.replace(phonenumberc, ""); document.title = filmtitel + " - tele5 mediathek > " + onlinebis; document.getElementsByTagName("body")[0].onclick = function () { var t5vida = document.querySelector("video").id; document.getElementById(t5vida).setAttribute("controls",true); document.getElementsByClassName("vjs-control-bar")[0].style.display="none"; document.getElementById(t5vida).pause(); var mydoctitle=document.title; var hasdrm = document.getElementById(t5vida).mediaKeys; if (!(hasdrm == null)) { document.title = "DRM! " + mydoctitle; } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址