1
|
/**
|
2
|
* SPDX-License-Identifier: CC0-1.0
|
3
|
*
|
4
|
* Watch vaticannews.va embedded YouTube videos on yewtu.be instead
|
5
|
*
|
6
|
* Copyright (C) 2021 Wojtek Kosior <koszko@koszko.org>
|
7
|
*
|
8
|
* This program is free software: you can redistribute it and/or modify
|
9
|
* it under the terms of the CC0 1.0 Universal License as published by
|
10
|
* the Creative Commons Corporation.
|
11
|
*
|
12
|
* This program is distributed in the hope that it will be useful,
|
13
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
* CC0 1.0 Universal License for more details.
|
16
|
* Available under the terms of Creative Commons Zero.
|
17
|
*/
|
18
|
|
19
|
/* Use with https://www.vaticannews.va/*** */
|
20
|
|
21
|
for (const iframe of document.querySelectorAll("iframe[data-src]")) {
|
22
|
const youtube_url = iframe.getAttribute("data-src");
|
23
|
iframe.setAttribute("src", make_yewtube_url(youtube_url));
|
24
|
}
|