blob: 625c915927079ac390c4edf107cbb487b21e8109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* SPDX-License-Identifier: CC0-1.0
*
* Copyright (C) 2025 Woj. Kosior <koszko@koszko.org>
*/
/*
#+begin_src manifest-jq
.matches = ["https://stephanskirche.at/*"]
#+end_src
*/
if (false) { /* #+begin_src background-js */
blockJsOnUrl("https://stephanskirche.at/*");
} /* #+end_src */
/* Make elements show up. */
for (const elem of document.querySelectorAll(".animated")) {
elem.style.opacity = 1;
}
|