Added CCC-media video-player down-mover.

This commit is contained in:
tastytea 2019-06-18 22:37:46 +02:00
parent 5602b4a7e3
commit c21b67d1a1
Signed by untrusted user: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
// ==UserScript==
// @name CCC-media video-player down-mover
// @description Moves video-players on media.ccc.de below the download-hyperlinks.
// @description:de Verschiebt video-player auf media.ccc.de unter die download-hyperlinks.
// @version 2019.06.18.1
// @author tastytea
// @copyright 2019, tastytea (https://tastytea.de/)
// @license GPL-3.0-only
// @namespace tastytea.de
// @homepageURL https://schlomp.space/tastytea/userscripts
// @supportURL https://schlomp.space/tastytea/userscripts/issues
// @downloadURL https://schlomp.space/tastytea/userscripts/raw/branch/main/video/ccc_media_player_down.user.js
// @grant none
// @match https://media.ccc.de/v/*
// @run-at document-end
// @inject-into content
// ==/UserScript==
function main()
{
const player = document.getElementsByClassName("player video")[0];
if (player === undefined)
{
console.error("Player not found.");
return;
}
// Move player between “Download” and “Related”.
for (let heading of document.getElementsByTagName("h3"))
{
if (heading.textContent === "Related")
{
heading.parentElement.insertBefore(player, heading);
break;
}
}
}
main();