/** * SPDX-License-Identifier: CC0-1.0 * * Copyright (C) 2026 Woj. Kosior */ /* #+begin_src manifest-jq .matches = ["https://thechosen.tv/*"] #+end_src */ if (false) { /* #+begin_src background-js */ blockJsOnUrl("https://thechosen.tv/*"); } /* #+end_src */ /* This fix makes the link to The Chosen subsite with videos work. */ for (const a of document.querySelectorAll('a')) { if (/^\s*watch\s+now\s*$/i.test(a.textContent)) a.href = 'https://watch.thechosen.tv/'; }