blob: 8edff95b80d73c4bea5f5b24bcd6df87e71b663f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* SPDX-License-Identifier: CC0-1.0
*
* Copyright (C) 2026 Woj. Kosior <koszko@koszko.org>
*/
/*
#+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/';
}
|