tele5 video

removes all the crap, shows protection (DRM) status

当前为 2022-02-28 提交的版本,查看 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址