From ecc6c218af8ef864fe8d03badfed0e6e7c730fd0 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 28 Jun 2022 18:17:14 +0200 Subject: put each fix in a separate directory with its own index.json This commit also updates the repository to use version 2 of package source schema. --- .../vaticannews_videos.js | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/vaticannews-va-fix-videos/vaticannews_videos.js (limited to 'src/vaticannews-va-fix-videos/vaticannews_videos.js') diff --git a/src/vaticannews-va-fix-videos/vaticannews_videos.js b/src/vaticannews-va-fix-videos/vaticannews_videos.js new file mode 100644 index 0000000..0967ed5 --- /dev/null +++ b/src/vaticannews-va-fix-videos/vaticannews_videos.js @@ -0,0 +1,24 @@ +/** + * SPDX-License-Identifier: CC0-1.0 + * + * Watch vaticannews.va embedded YouTube videos on yewtu.be instead + * + * Copyright (C) 2021 Wojtek Kosior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the CC0 1.0 Universal License as published by + * the Creative Commons Corporation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * CC0 1.0 Universal License for more details. + * Available under the terms of Creative Commons Zero. + */ + +/* Use with https://www.vaticannews.va/*** */ + +for (const iframe of document.querySelectorAll("iframe[data-src]")) { + const youtube_url = iframe.getAttribute("data-src"); + iframe.setAttribute("src", make_yewtube_url(youtube_url)); +} -- cgit v1.2.3